Merge "Remove the literal false boolean value"
authorBharath Balasubramanian <bharathb@research.att.com>
Wed, 5 Sep 2018 23:07:22 +0000 (23:07 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 5 Sep 2018 23:07:22 +0000 (23:07 +0000)
src/main/java/org/onap/music/datastore/MusicDataStore.java

index 7557247..21b0053 100644 (file)
@@ -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;