fix flags in validityCheck

This commit is contained in:
way2muchnoise
2017-02-02 18:03:02 +01:00
parent a1ff3960d8
commit bc895bb4fc

View File

@@ -156,7 +156,7 @@ public class Comparer implements IComparer {
return EnumActionResult.SUCCESS; return EnumActionResult.SUCCESS;
} }
if ((leftEmpty && !rightEmpty) || (!rightEmpty) && rightEmpty) { if ((leftEmpty && !rightEmpty) || (!leftEmpty && rightEmpty)) {
return EnumActionResult.FAIL; return EnumActionResult.FAIL;
} }