Comment Restart Manager code here (Score 1, Funny) 632
So it contacts the restart manager, and if it says it is possible to update without restart, it doesn't restart? And if, say it returns false, then it would still have to restart. I'm betting some intern made this:
class RestartManager {
public boolean canUpdateWithoutRestart() {
return false;
}
}
class RestartManager {
public boolean canUpdateWithoutRestart() {
return false;
}
}