提交 0100f172 编写于 作者: K kohsuke

this is needed by hudson.maven.agent.Main.main(Main.java:68)


git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@6304 71c3de6d-444a-0410-be80-ed276b4c234a
上级 7530c95c
......@@ -39,6 +39,10 @@ public class Launcher {
System.exit(0);
}
public static void main(InputStream is, OutputStream os) throws IOException, InterruptedException {
main(is,os, Mode.BINARY);
}
public static void main(InputStream is, OutputStream os, Mode mode) throws IOException, InterruptedException {
ExecutorService executor = Executors.newCachedThreadPool();
Channel channel = new Channel("channel", executor, mode, is, os);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册