Fix sonar issues - JsonUtil 31/27631/2
authorsiddharth0905 <siddharth.singh4@amdocs.com>
Mon, 8 Jan 2018 09:06:29 +0000 (14:36 +0530)
committerVitaly Emporopulo <Vitaliy.Emporopulo@amdocs.com>
Tue, 9 Jan 2018 13:19:10 +0000 (13:19 +0000)
Private constructor and Changed StringBuffer to StringBuilder

Change-Id: I5fdd520654c0ba00f54c66f2d4a96e60ee2b496e
Issue-ID: SDC-343
Signed-off-by: siddharth0905 <siddharth.singh4@amdocs.com>
openecomp-be/lib/openecomp-core-lib/openecomp-utilities-lib/src/main/java/org/openecomp/core/utilities/json/JsonUtil.java

index c3d32df..413425d 100644 (file)
@@ -25,6 +25,7 @@ import com.google.gson.GsonBuilder;
 import com.google.gson.JsonIOException;
 import com.google.gson.JsonParser;
 import com.google.gson.JsonSyntaxException;
+
 import org.apache.commons.collections4.CollectionUtils;
 import org.everit.json.schema.EnumSchema;
 import org.everit.json.schema.Schema;
@@ -63,26 +64,28 @@ public class JsonUtil {
     gson = gsonBuilder.create();
   }
 
+  private JsonUtil() {
+  }
+
   /**
    * Object 2 json string.
    *
    * @param obj the obj
    * @return the string
    */
-  //TODO: refactor all other ugly code to use this
   public static String object2Json(Object obj) {
     return sbObject2Json(obj).toString();
 
   }
 
   /**
-   * Sb object 2 json string buffer.
+   * Sb object 2 json string builder.
    *
    * @param obj the obj
-   * @return the string buffer
+   * @return the string builder
    */
-  public static StringBuffer sbObject2Json(Object obj) {
-    return new StringBuffer((new GsonBuilder()).setPrettyPrinting().create().toJson(obj));
+  public static StringBuilder sbObject2Json(Object obj) {
+    return new StringBuilder(new GsonBuilder().setPrettyPrinting().create().toJson(obj));
   }
 
   /**