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 { }