From a59c77a60241913b42644e9f4fc21068ca4a6ff7 Mon Sep 17 00:00:00 2001 From: John Blum Date: Mon, 3 Dec 2018 17:41:09 -0800 Subject: [PATCH] Format source code. --- .../ForkingClientServerIntegrationTestsSupport.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ForkingClientServerIntegrationTestsSupport.java b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ForkingClientServerIntegrationTestsSupport.java index 45ec907..607445b 100644 --- a/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ForkingClientServerIntegrationTestsSupport.java +++ b/spring-data-geode-test/src/main/java/org/springframework/data/gemfire/tests/integration/ForkingClientServerIntegrationTestsSupport.java @@ -96,14 +96,14 @@ public abstract class ForkingClientServerIntegrationTestsSupport extends ClientS System.clearProperty(GEMFIRE_POOL_SERVERS_PROPERTY); } - protected static synchronized Optional getGemFireServerProcess() { - return Optional.ofNullable(gemfireServer); - } - protected static synchronized void setGemFireServerProcess(ProcessWrapper gemfireServerProcess) { gemfireServer = gemfireServerProcess; } + protected static synchronized Optional getGemFireServerProcess() { + return Optional.ofNullable(gemfireServer); + } + @EnablePdx @ClientCacheApplication(logLevel = GEMFIRE_LOG_LEVEL) protected static class BaseGemFireClientConfiguration extends ClientServerIntegrationTestsConfiguration { }