aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSooriyaa <soponraj@in.ibm.com>2018-09-05 11:59:47 +0530
committerSooriyaa <soponraj@in.ibm.com>2018-09-05 12:00:02 +0530
commitc20df579c1f282ab042563ce19727587ff1b9e58 (patch)
tree35f94a6e313f75f862e97073fc767c4c4402964a
parent36e2dab449eae8ede28200f95bfaec2ab23bd486 (diff)
Remove the literal false boolean value
Remove the literal false boolean value Issue-ID: MUSIC-130 Change-Id: I99f7168abc2d354919b2b01006b89ec26e762864 Signed-off-by: Sooriyaa <soponraj@in.ibm.com>
-rw-r--r--src/main/java/org/onap/music/datastore/MusicDataStore.java2
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;