From: Thugutla sailakshmi Date: Thu, 29 Aug 2019 17:19:31 +0000 (+0530) Subject: sonar fix-463 remove the exception from the method body X-Git-Tag: 3.2.35~3^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=music.git;a=commitdiff_plain;h=0f07baf2d7e54fc155dee736895e730d188a1e38 sonar fix-463 remove the exception from the method body sonar fix-463 remove the exception from the method body Issue-ID: MUSIC-463 Change-Id: Ief7810f15924b65029d71b9f087c59dfb5b6decd Signed-off-by: Thugutla sailakshmi --- diff --git a/src/main/java/org/onap/music/lockingservice/cassandra/CassaLockStore.java b/src/main/java/org/onap/music/lockingservice/cassandra/CassaLockStore.java index 06a087ab..82567e2e 100644 --- a/src/main/java/org/onap/music/lockingservice/cassandra/CassaLockStore.java +++ b/src/main/java/org/onap/music/lockingservice/cassandra/CassaLockStore.java @@ -441,8 +441,7 @@ public class CassaLockStore { } - public void updateLockAcquireTime(String keyspace, String table, String key, String lockReference) - throws MusicServiceException, MusicQueryException { + public void updateLockAcquireTime(String keyspace, String table, String key, String lockReference) { table = table_prepend_name + table; PreparedQueryObject queryObject = new PreparedQueryObject(); Long lockReferenceL = Long.parseLong(lockReference);