diff options
author | Ahmed Ashour <asashour@yahoo.com> | 2017-09-13 12:35:24 +0200 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-09-13 14:32:50 +0300 |
commit | 03349e8c6697d668e675e628783b52eef39b877b (patch) | |
tree | 3fea8507c1cdf457b0c47bdd4970ed7c07cc39c7 /compatibility-server | |
parent | 29cc151f37ee6e56910d6bb80ade321f08b26486 (diff) | |
download | vaadin-framework-03349e8c6697d668e675e628783b52eef39b877b.tar.gz vaadin-framework-03349e8c6697d668e675e628783b52eef39b877b.zip |
Simplify boolean expressions
Diffstat (limited to 'compatibility-server')
-rw-r--r-- | compatibility-server/src/main/java/com/vaadin/v7/data/util/MethodProperty.java | 10 | ||||
-rw-r--r-- | compatibility-server/src/main/java/com/vaadin/v7/ui/NativeSelect.java | 4 |
2 files changed, 7 insertions, 7 deletions
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<T> extends AbstractProperty<T> { } 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<T> extends AbstractProperty<T> { } } } - if (found != true) { + if (!found) { throw new MethodException(this, "Could not find " + getMethodName + "-method"); } @@ -440,7 +440,7 @@ public class MethodProperty<T> extends AbstractProperty<T> { 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<T> extends AbstractProperty<T> { } } } - 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"); } |