From c20df579c1f282ab042563ce19727587ff1b9e58 Mon Sep 17 00:00:00 2001 From: Sooriyaa Date: Wed, 5 Sep 2018 11:59:47 +0530 Subject: Remove the literal false boolean value Remove the literal false boolean value Issue-ID: MUSIC-130 Change-Id: I99f7168abc2d354919b2b01006b89ec26e762864 Signed-off-by: Sooriyaa --- src/main/java/org/onap/music/datastore/MusicDataStore.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit 1.2.3-korg