indentation change

This commit is contained in:
Jesus Castagnetto 2013-02-01 21:00:36 -05:00
parent 473e2f367f
commit ebec459cfd

View File

@ -20,8 +20,8 @@ public class Xor implements Function {
@Override
public Object call(Properties bindings, Object[] args) {
if (args.length == 2 &&
args[0] != null && args[0] instanceof Boolean &&
args[1] != null && args[0] instanceof Boolean) {
args[0] != null && args[0] instanceof Boolean &&
args[1] != null && args[0] instanceof Boolean) {
boolean o1 = ((Boolean) args[0]).booleanValue();
boolean o2 = ((Boolean) args[1]).booleanValue();
return o1 != o2;