Removed Jsr223 from classnames

This commit is contained in:
David Turanski
2011-09-02 11:55:58 -04:00
committed by Mark Fisher
parent 4556a870f3
commit 3d683b6134
8 changed files with 34 additions and 26 deletions

View File

@@ -102,9 +102,17 @@ public class ForkUtil {
return proc.getOutputStream();
}
public static OutputStream cacheServer() {
String className = "org.springframework.integration.gemfire.fork.CacheServerProcess";
return startCacheServer("org.springframework.integration.gemfire.fork.CacheServerProcess");
}
public static OutputStream cacheServer(String className) {
return startCacheServer(className);
}
private static OutputStream startCacheServer(String className) {
if (controlFileExists(className)) {
deleteControlFile(className);
}