Fixed Minor Code Smells issues "Deprecated JsonParser"
[cli.git] / grpc / grpc-server / src / main / java / org / open / infc / grpc / server / OpenInterfaceGrpcServer.java
index ba9920c..7b00c16 100644 (file)
@@ -277,7 +277,7 @@ public class OpenInterfaceGrpcServer {
 
         public static void setOutputAttr(Builder reply, String printOut){
             try {
-                reply.putAttrs(OnapCommandConstants.RESULTS, new JsonParser().parse(printOut).toString());
+                reply.putAttrs(OnapCommandConstants.RESULTS, JsonParser.parseString(printOut).toString());
             } catch (Exception e) { // NOSONAR
                 reply.putAttrs(OnapCommandConstants.RESULTS, printOut);
             }