提交 3aa2ca40 编写于 作者: K kohsuke

doc improvement

git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@17808 71c3de6d-444a-0410-be80-ed276b4c234a
上级 709f9e21
......@@ -87,6 +87,7 @@ public abstract class ComputerLauncher implements Describable<ComputerLauncher>,
* of this method doesn't have to dilligently catch those exceptions.
*/
public void launch(SlaveComputer computer, TaskListener listener) throws IOException , InterruptedException {
// to remain compatible with the legacy implementation that overrides the old signature
launch(computer,cast(listener));
}
......@@ -102,6 +103,7 @@ public abstract class ComputerLauncher implements Describable<ComputerLauncher>,
* Allows the {@link ComputerLauncher} to tidy-up after a disconnect.
*/
public void afterDisconnect(SlaveComputer computer, TaskListener listener) {
// to remain compatible with the legacy implementation that overrides the old signature
afterDisconnect(computer,cast(listener));
}
......@@ -116,6 +118,7 @@ public abstract class ComputerLauncher implements Describable<ComputerLauncher>,
* Allows the {@link ComputerLauncher} to prepare for a disconnect.
*/
public void beforeDisconnect(SlaveComputer computer, TaskListener listener) {
// to remain compatible with the legacy implementation that overrides the old signature
beforeDisconnect(computer,cast(listener));
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册