From 03349e8c6697d668e675e628783b52eef39b877b Mon Sep 17 00:00:00 2001 From: Ahmed Ashour Date: Wed, 13 Sep 2017 12:35:24 +0200 Subject: Simplify boolean expressions --- .../src/main/java/com/vaadin/v7/data/util/MethodProperty.java | 10 +++++----- .../src/main/java/com/vaadin/v7/ui/NativeSelect.java | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'compatibility-server/src/main/java/com') diff --git a/compatibility-server/src/main/java/com/vaadin/v7/data/util/MethodProperty.java b/compatibility-server/src/main/java/com/vaadin/v7/data/util/MethodProperty.java index 9d225c831a..0e564087bf 100644 --- a/compatibility-server/src/main/java/com/vaadin/v7/data/util/MethodProperty.java +++ b/compatibility-server/src/main/java/com/vaadin/v7/data/util/MethodProperty.java @@ -386,8 +386,8 @@ public class MethodProperty extends AbstractProperty { } if (j == c.length) { - // all paramteters matched - if (found == true) { + // all parameters matched + if (found) { throw new MethodException(this, "Could not uniquely identify " + getMethodName + "-method"); @@ -397,7 +397,7 @@ public class MethodProperty extends AbstractProperty { } } } - if (found != true) { + if (!found) { throw new MethodException(this, "Could not find " + getMethodName + "-method"); } @@ -440,7 +440,7 @@ public class MethodProperty extends AbstractProperty { if (j == c.length) { // all parameters match - if (found == true) { + if (found) { throw new MethodException(this, "Could not identify unique " + setMethodName + "-method"); @@ -450,7 +450,7 @@ public class MethodProperty extends AbstractProperty { } } } - if (found != true) { + if (!found) { throw new MethodException(this, "Could not identify " + setMethodName + "-method"); } diff --git a/compatibility-server/src/main/java/com/vaadin/v7/ui/NativeSelect.java b/compatibility-server/src/main/java/com/vaadin/v7/ui/NativeSelect.java index e69f7c620b..4696e6c707 100644 --- a/compatibility-server/src/main/java/com/vaadin/v7/ui/NativeSelect.java +++ b/compatibility-server/src/main/java/com/vaadin/v7/ui/NativeSelect.java @@ -119,7 +119,7 @@ public class NativeSelect extends AbstractSelect @Override public void setMultiSelect(boolean multiSelect) throws UnsupportedOperationException { - if (multiSelect == true) { + if (multiSelect) { throw new UnsupportedOperationException( "Multiselect not supported"); } @@ -128,7 +128,7 @@ public class NativeSelect extends AbstractSelect @Override public void setNewItemsAllowed(boolean allowNewOptions) throws UnsupportedOperationException { - if (allowNewOptions == true) { + if (allowNewOptions) { throw new UnsupportedOperationException( "newItemsAllowed not supported"); } -- cgit v1.2.3