diff options
author | Bharath Balasubramanian <bharathb@research.att.com> | 2018-09-05 23:07:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-09-05 23:07:22 +0000 |
commit | f1169764cd4cd389882ad09dcaca0cc9c0d94efe (patch) | |
tree | 9c9ae132f0a2249c0e73123274e737d4973fba71 | |
parent | a08d06d0ee36d4ee1e9a2b7e2634bb25fcb36ebb (diff) | |
parent | c20df579c1f282ab042563ce19727587ff1b9e58 (diff) |
Merge "Remove the literal false boolean value"
-rw-r--r-- | src/main/java/org/onap/music/datastore/MusicDataStore.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/onap/music/datastore/MusicDataStore.java b/src/main/java/org/onap/music/datastore/MusicDataStore.java index 7557247d..21b0053f 100644 --- a/src/main/java/org/onap/music/datastore/MusicDataStore.java +++ b/src/main/java/org/onap/music/datastore/MusicDataStore.java @@ -315,7 +315,7 @@ public class MusicDataStore { DataType colType = colInfo.getType(colName); Object columnValue = getColValue(row, colName, colType); Object conditionValue = MusicUtil.convertToActualDataType(colType, entry.getValue()); - if (columnValue.equals(conditionValue) == false) + if (columnValue.equals(conditionValue)) return false; } return true; |