diff options
author | Brian Vosburgh | 2016-07-05 19:21:26 +0000 |
---|---|---|
committer | Brian Vosburgh | 2017-05-18 22:37:42 +0000 |
commit | 38e9a22f959634577e465e1530850576984759d1 (patch) | |
tree | cc14f3084ed21b9ab42b62011c3c1e85831b8874 /common/tests | |
parent | e1845e115f0e6541a1c2d56ddd6a23ea8d53bd0f (diff) | |
download | webtools.dali-38e9a22f959634577e465e1530850576984759d1.tar.gz webtools.dali-38e9a22f959634577e465e1530850576984759d1.tar.xz webtools.dali-38e9a22f959634577e465e1530850576984759d1.zip |
clean up PVM null checks etc.
Diffstat (limited to 'common/tests')
-rw-r--r-- | common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/DoublePropertyValueModelTests.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/DoublePropertyValueModelTests.java b/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/DoublePropertyValueModelTests.java index d896e6c6c9..c933411190 100644 --- a/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/DoublePropertyValueModelTests.java +++ b/common/tests/org.eclipse.jpt.common.utility.tests/src/org/eclipse/jpt/common/utility/tests/internal/model/value/DoublePropertyValueModelTests.java @@ -62,9 +62,6 @@ public class DoublePropertyValueModelTests } protected SimplePropertyValueModel<String> getValueModel(String key) { - if (key == null) { - return null; - } SimplePropertyValueModel<String> valueModel = this.valueModels.get(key); if (valueModel == null) { valueModel = new SimplePropertyValueModel<>(key + key); |