Format source code.

This commit is contained in:
John Blum
2018-12-03 17:41:09 -08:00
parent 72043ec7e5
commit a59c77a602

View File

@@ -96,14 +96,14 @@ public abstract class ForkingClientServerIntegrationTestsSupport extends ClientS
System.clearProperty(GEMFIRE_POOL_SERVERS_PROPERTY);
}
protected static synchronized Optional<ProcessWrapper> getGemFireServerProcess() {
return Optional.ofNullable(gemfireServer);
}
protected static synchronized void setGemFireServerProcess(ProcessWrapper gemfireServerProcess) {
gemfireServer = gemfireServerProcess;
}
protected static synchronized Optional<ProcessWrapper> getGemFireServerProcess() {
return Optional.ofNullable(gemfireServer);
}
@EnablePdx
@ClientCacheApplication(logLevel = GEMFIRE_LOG_LEVEL)
protected static class BaseGemFireClientConfiguration extends ClientServerIntegrationTestsConfiguration { }