diff --git a/zond/src/main/java/asys/zond/Config.java b/zond/src/main/java/asys/zond/Config.java index a3aaf6f..1c72aa3 100644 --- a/zond/src/main/java/asys/zond/Config.java +++ b/zond/src/main/java/asys/zond/Config.java @@ -18,7 +18,7 @@ public class Config { private Config(){ } - void load(InputStream inputStream) throws IOException { + private void load(InputStream inputStream) throws IOException { properties.load(inputStream); if (properties.size() == 0) { throw new IOException("Config empty!"); diff --git a/zond/src/main/java/asys/zond/ZondExecuteWatchdog.java b/zond/src/main/java/asys/zond/ZondExecuteWatchdog.java index 5b45216..3f655cf 100644 --- a/zond/src/main/java/asys/zond/ZondExecuteWatchdog.java +++ b/zond/src/main/java/asys/zond/ZondExecuteWatchdog.java @@ -18,7 +18,7 @@ public class ZondExecuteWatchdog extends ExecuteWatchdog { private long pid; private String cmdkiller; - public ZondExecuteWatchdog(long timeout, PipeInputStream inputStream, String cmdkiller) { + ZondExecuteWatchdog(long timeout, PipeInputStream inputStream, String cmdkiller) { super(timeout); this.inputStream = inputStream; this.cmdkiller = cmdkiller.trim();