Fixed string format specifier. 83/15083/1
authorshashikanth <shashikanth.vh@huawei.com>
Mon, 25 Sep 2017 13:36:24 +0000 (19:06 +0530)
committershashikanth <shashikanth.vh@huawei.com>
Mon, 25 Sep 2017 13:36:25 +0000 (19:06 +0530)
String contains no format specifiers.
https://sonar.onap.org/component_issues?id=org.openecomp.so%3Aso#resolved=false|severities=CRITICAL

Issue-Id:SO-118
Change-Id: Ibcb5124a98ea689a01461dddc42a4aa1db147a20
Signed-off-by: shashikanth.vh <shashikanth.vh@huawei.com>
bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/appc/ApplicationControllerSupport.java

index 3b70891..bfd0d7d 100644 (file)
@@ -108,7 +108,7 @@ public class ApplicationControllerSupport {
                        try {
                                return (Status) statusReader.invoke(response);
                        } catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
-                               throw new RuntimeException(String.format("Unable to obtain status from LCM Kit response"), e);
+                               throw new RuntimeException("Unable to obtain status from LCM Kit response", e);
                        }
                }
                return new Status();