From 015b80c5ab768f6a27f48ebf533a73a1df1bd89c Mon Sep 17 00:00:00 2001 From: John Blum Date: Mon, 27 Jul 2020 19:07:01 -0700 Subject: [PATCH] Edit README and format source code examples. --- README.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.adoc b/README.adoc index 1d2a5b4..8e17108 100644 --- a/README.adoc +++ b/README.adoc @@ -527,7 +527,7 @@ class ExampleUnitTest { Object key = invocation.getArgugment(0); Object value = invocation.getArgument(1); - Object existingValue = null; + Object existingValue; synchronized (this.example) { @@ -702,7 +702,7 @@ class ExampleIntegrationTest { @EnableLocator @EnableManager @EnableGemFireResourceCollector - static class TestGeodeConfiguration { } + static class TestGeodeConfiguration { } } ----