From dfdc592d6e6abd9c6200e1971b81f63d20d19f3c Mon Sep 17 00:00:00 2001 From: Sooriyaa Date: Tue, 4 Sep 2018 11:34:58 +0530 Subject: Removing the literal true boolean value Removing the literal true boolean value Issue-ID: MUSIC-125 Change-Id: Id126541571cc3eb2475f064421b0baaeada8e0e7 Signed-off-by: Sooriyaa --- .../java/org/onap/music/conductor/conditionals/MusicConditional.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) { -- cgit 1.2.3-korg