提交 d40db4fa 编写于 作者: S stephenconnolly

I think that fixes the compile errors

git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@10198 71c3de6d-444a-0410-be80-ed276b4c234a
上级 203c6651
......@@ -84,7 +84,7 @@ public class CommandLauncher extends ComputerLauncher {
LOGGER.info("slave agent launched for " + computer.getDisplayName());
} catch (InterruptedException e) {
e.printStackTrace(listener.error(Messages.ComputerLauncher_abortedLaunch));
e.printStackTrace(listener.error(Messages.ComputerLauncher_abortedLaunch()));
} catch (RuntimeException e) {
e.printStackTrace(listener.error(Messages.ComputerLauncher_unexpectedError()));
} catch (Error e) {
......
......@@ -30,7 +30,7 @@ public class JNLPLauncher extends ComputerLauncher {
public static final Descriptor<ComputerLauncher> DESCRIPTOR = new Descriptor<ComputerLauncher>(JNLPLauncher.class) {
public String getDisplayName() {
return Messages.JNLPLauncher.displayName();
return Messages.JNLPLauncher_displayName();
}
};
......
......@@ -189,7 +189,7 @@ public final class SlaveComputer extends Computer {
}
isUnix = channel.call(new DetectOS());
log.println(isUnix? Messages.Slave_UnixSlave():Messages.Slave_WindowsSlave());
log.println(isUnix? hudson.model.Messages.Slave_UnixSlave():hudson.model.Messages.Slave_WindowsSlave());
// install log handler
channel.call(new LogInstaller());
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册