sonar fix-463 remove the exception from the method body 25/94625/1
authorThugutla sailakshmi <tsaila10@in.ibm.com>
Thu, 29 Aug 2019 17:19:31 +0000 (22:49 +0530)
committerThugutla sailakshmi <tsaila10@in.ibm.com>
Thu, 29 Aug 2019 17:19:51 +0000 (22:49 +0530)
sonar fix-463 remove the exception from the method body

Issue-ID: MUSIC-463
Change-Id: Ief7810f15924b65029d71b9f087c59dfb5b6decd
Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
src/main/java/org/onap/music/lockingservice/cassandra/CassaLockStore.java

index 06a087a..82567e2 100644 (file)
@@ -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);