From: Sooriyaa Date: Wed, 5 Sep 2018 06:29:47 +0000 (+0530) Subject: Remove the literal false boolean value X-Git-Tag: 3.0.23~23^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=c20df579c1f282ab042563ce19727587ff1b9e58;p=music.git Remove the literal false boolean value Remove the literal false boolean value Issue-ID: MUSIC-130 Change-Id: I99f7168abc2d354919b2b01006b89ec26e762864 Signed-off-by: Sooriyaa --- 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;