From e23e9c4a4d8f1b390649d2e9d0fdce5ed41149ae Mon Sep 17 00:00:00 2001 From: csviri Date: Thu, 29 Sep 2022 10:44:44 +0200 Subject: [PATCH] docs: fix usa sample outdated code --- docs/documentation/use-samples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/documentation/use-samples.md b/docs/documentation/use-samples.md index 42fbfacfe8..9f8b383f89 100644 --- a/docs/documentation/use-samples.md +++ b/docs/documentation/use-samples.md @@ -53,7 +53,7 @@ Once you've added the dependency, define a main method initializing the Operator public class Runner { public static void main(String[] args) { - Operator operator = new Operator(DefaultConfigurationService.instance()); + Operator operator = new Operator(); operator.register(new WebPageReconciler()); operator.start(); }