From 67fc6a18e622659bef74c85841ee63944a1d880c Mon Sep 17 00:00:00 2001 From: Aravind M Date: Fri, 21 Jun 2019 08:07:34 +0530 Subject: [PATCH] fix code example containing syntax error --- ambassador/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ambassador/README.md b/ambassador/README.md index f23d1e13cedb..616604c27e52 100644 --- a/ambassador/README.md +++ b/ambassador/README.md @@ -43,7 +43,7 @@ A remote services represented as a singleton. public class RemoteService implements RemoteServiceInterface { private static final Logger LOGGER = LoggerFactory.getLogger(RemoteService.class); - private static RemoteService service = null;2 + private static RemoteService service = null; static synchronized RemoteService getRemoteService() { if (service == null) {