oops, doesSubnodeChecking returned the opposite of what it should

This commit is contained in:
hns 2001-07-16 15:33:46 +00:00
parent 58c92aec46
commit c28f67f5dc

View file

@ -702,7 +702,7 @@ public class Application extends UnicastRemoteObject implements IRemoteApp, Runn
* It is recommended to leave it on except you suffer severe performance problems and know what you do.
*/
public boolean doesSubnodeChecking () {
return "false".equalsIgnoreCase (props.getProperty ("subnodeChecking"));
return !"false".equalsIgnoreCase (props.getProperty ("subnodeChecking"));
}
}