oops, doesSubnodeChecking returned the opposite of what it should
This commit is contained in:
parent
58c92aec46
commit
c28f67f5dc
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
* It is recommended to leave it on except you suffer severe performance problems and know what you do.
|
||||||
*/
|
*/
|
||||||
public boolean doesSubnodeChecking () {
|
public boolean doesSubnodeChecking () {
|
||||||
return "false".equalsIgnoreCase (props.getProperty ("subnodeChecking"));
|
return !"false".equalsIgnoreCase (props.getProperty ("subnodeChecking"));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue