indentation change
This commit is contained in:
parent
473e2f367f
commit
ebec459cfd
@ -20,8 +20,8 @@ public class Xor implements Function {
|
|||||||
@Override
|
@Override
|
||||||
public Object call(Properties bindings, Object[] args) {
|
public Object call(Properties bindings, Object[] args) {
|
||||||
if (args.length == 2 &&
|
if (args.length == 2 &&
|
||||||
args[0] != null && args[0] instanceof Boolean &&
|
args[0] != null && args[0] instanceof Boolean &&
|
||||||
args[1] != null && args[0] instanceof Boolean) {
|
args[1] != null && args[0] instanceof Boolean) {
|
||||||
boolean o1 = ((Boolean) args[0]).booleanValue();
|
boolean o1 = ((Boolean) args[0]).booleanValue();
|
||||||
boolean o2 = ((Boolean) args[1]).booleanValue();
|
boolean o2 = ((Boolean) args[1]).booleanValue();
|
||||||
return o1 != o2;
|
return o1 != o2;
|
||||||
|
Loading…
Reference in New Issue
Block a user