From: Sooriyaa Date: Tue, 4 Sep 2018 06:04:58 +0000 (+0530) Subject: Removing the literal true boolean value X-Git-Tag: 3.0.23~18^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=dfdc592d6e6abd9c6200e1971b81f63d20d19f3c;p=music.git Removing the literal true boolean value Removing the literal true boolean value Issue-ID: MUSIC-125 Change-Id: Id126541571cc3eb2475f064421b0baaeada8e0e7 Signed-off-by: Sooriyaa --- diff --git a/src/main/java/org/onap/music/conductor/conditionals/MusicConditional.java b/src/main/java/org/onap/music/conductor/conditionals/MusicConditional.java index c97ccfab..8ddf1c22 100644 --- a/src/main/java/org/onap/music/conductor/conditionals/MusicConditional.java +++ b/src/main/java/org/onap/music/conductor/conditionals/MusicConditional.java @@ -122,7 +122,7 @@ public class MusicConditional { MusicLockState mls = MusicCore.getLockingServiceHandle() .getLockState(keyspace + "." + tableName + "." + primaryKey); - if (mls.getLockHolder().equals(lockId) == true) { + if (mls.getLockHolder().equals(lockId)) { try { results = MusicCore.getDSHandle().executeCriticalGet(queryBank.get(MusicUtil.SELECT)); } catch (Exception e) { @@ -181,7 +181,7 @@ public class MusicConditional { MusicLockState mls = MusicCore.getLockingServiceHandle() .getLockState(keyspace + "." + tableName + "." + primaryKeyValue); - if (mls.getLockHolder().equals(lockId) == true) { + if (mls.getLockHolder().equals(lockId)) { Row row = MusicCore.getDSHandle().executeCriticalGet(queryBank.get(MusicUtil.SELECT)).one(); if(row != null) {