lowered some code smells 21/106721/16
authorIndrijeet kumar <indriku1@in.ibm.com>
Tue, 28 Apr 2020 04:19:59 +0000 (09:49 +0530)
committerIndrijeet Kumar <indriku1@in.ibm.com>
Thu, 28 May 2020 04:19:58 +0000 (04:19 +0000)
lowered some code smells

Issue-ID: PORTAL-869
Change-Id: Ia92c254b9fb9ddfe9db63889808eea07557c198a
Signed-off-by: Indrijeet Kumar <indriku1@in.ibm.com>
music-core/src/main/java/org/onap/music/main/DeadlockDetectionUtil.java
music-core/src/main/java/org/onap/music/main/MusicUtil.java
music-core/src/main/java/org/onap/music/service/impl/MusicCassaCore.java

index 23ccca7..004bd55 100644 (file)
@@ -47,7 +47,7 @@ public class DeadlockDetectionUtil {
                public Node(String id) {
                        super();
                        this.id = id;
-                       this.links = new ArrayList<Node>();
+                       this.links = new ArrayList<>();
                }
 
                public List<Node> getLinks() {
@@ -85,7 +85,7 @@ public class DeadlockDetectionUtil {
        }
        
        public DeadlockDetectionUtil() {
-               this.nodeList = new HashMap<String, Node>();
+               this.nodeList = new HashMap<>();
        }
 
        public void listAllNodes() {
@@ -105,8 +105,7 @@ public class DeadlockDetectionUtil {
                        currentNode = nodeList.get("o" + owner);
                }
 
-               boolean cycle = findCycle(currentNode);
-               return cycle;
+               return findCycle(currentNode);
        }
 
        private boolean findCycle(Node currentNode) {
index 865ca01..4b8b105 100644 (file)
@@ -516,7 +516,7 @@ public class MusicUtil {
             case MAP:
                 return (Map<String, Object>) valueObj;
             case LIST:
-                return (List<Object>)valueObj;
+                return valueObj;
             case BLOB:
 
             default:
@@ -525,8 +525,8 @@ public class MusicUtil {
     }
 
     public static ByteBuffer convertToActualDataType(DataType colType, byte[] valueObj) {
-        ByteBuffer buffer = ByteBuffer.wrap(valueObj);
-        return buffer;
+       
+        return ByteBuffer.wrap(valueObj);
     }
 
     /**
@@ -620,11 +620,9 @@ public class MusicUtil {
      * @throws MusicServiceException
      * @throws MusicQueryException
      */
-    public static long v2sTimeStampInMicroseconds(long ordinal, long timeOfWrite) throws MusicServiceException, MusicQueryException {
+    public static long v2sTimeStampInMicroseconds(long ordinal, long timeOfWrite) throws MusicServiceException, MusicQueryException{
         // TODO: use acquire time instead of music eternity epoch
-        long ts = ordinal * MaxLockReferenceTimePart + (timeOfWrite - MusicEternityEpochMillis);
-
-        return ts;
+        return ordinal * MaxLockReferenceTimePart + (timeOfWrite - MusicEternityEpochMillis);
     }
 
     public static MusicCoreService  getMusicCoreService() {
index d29ba32..8055a48 100644 (file)
@@ -1080,9 +1080,10 @@ public class MusicCassaCore implements MusicCoreService {
         ReturnType result = null;
         
         try {
+            
             PreparedQueryObject queryObj = null;
             queryObj = jsonInsertObj.genInsertPreparedQueryObj();
-            
+
             if (consistency.equalsIgnoreCase(MusicUtil.EVENTUAL)) {
                 result = eventualPut(jsonInsertObj.genInsertPreparedQueryObj());
             } else if (consistency.equalsIgnoreCase(MusicUtil.CRITICAL)) {