Try to fix concurrentModificationException

This commit is contained in:
huangyuhui
2017-03-10 19:38:51 +08:00
parent 0f390e63d3
commit fd2a5a07a1
5 changed files with 43 additions and 9 deletions

View File

@@ -17,7 +17,6 @@
*/
package org.jackhuang.hmcl.api;
import java.util.ArrayList;
import java.util.List;
/**
@@ -34,10 +33,12 @@ public interface IProcess {
List<String> getStartupCommands();
ArrayList<String> getStdOutLines();
List<String> getStdOutLines();
boolean isRunning();
void stop();
void waitForCommandLineCompletion();
}