Merge "sonar fix-463 remove the exception from the method body"
authorThomas Nelson <nelson24@att.com>
Wed, 11 Sep 2019 16:36:15 +0000 (16:36 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 11 Sep 2019 16:36:15 +0000 (16:36 +0000)
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);