#117 plugin system refactoring

- improving testability of PinpointBootStrap
This commit is contained in:
Woonduk Kang
2015-04-09 17:28:11 +09:00
parent 0fe161cb1a
commit 28d16bf345
@@ -204,7 +204,7 @@ public class PinpointBootStrap {
Runtime.getRuntime().addShutdownHook(thread);
}
private static Map<String, String> parseAgentArgs(String str) {
private Map<String, String> parseAgentArgs(String str) {
Map<String, String> map = new HashMap<String, String>();
if (str == null || str.isEmpty()) {
@@ -228,7 +228,7 @@ public class PinpointBootStrap {
return Collections.unmodifiableMap(map);
}
private static JarFile getBootStrapJarFile(String bootStrapCoreJar) {
private JarFile getBootStrapJarFile(String bootStrapCoreJar) {
try {
return new JarFile(bootStrapCoreJar);
} catch (IOException ioe) {