Remove the unnecessary plus zero 73/32773/2
authorMunir Ahmad <munir.ahmad@bell.ca>
Sat, 24 Feb 2018 17:50:45 +0000 (12:50 -0500)
committerMunir Ahmad <munir.ahmad@bell.ca>
Sun, 25 Feb 2018 01:15:02 +0000 (01:15 +0000)
Change-Id: I86b43e8c8b9f4352c71d7d7073f8a345c7c9024c
Issue-ID: SO-437
Signed-off-by: Munir Ahmad <munir.ahmad@bell.ca>
bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/appc/ApplicationControllerSupport.java

index aa6e195..765bf61 100644 (file)
@@ -56,9 +56,9 @@ public class ApplicationControllerSupport {
        private static final int ERROR_SERIES = 200;
        private static final int REJECT_SERIES = 300;
        private static final int SUCCESS_SERIES = 400;
-       private static final int SUCCESS_STATUS = SUCCESS_SERIES + 0;
+       private static final int SUCCESS_STATUS = SUCCESS_SERIES;
        private static final int PARTIAL_SERIES = 500;
-       private static final int PARTIAL_SUCCESS_STATUS = PARTIAL_SERIES + 0;
+       private static final int PARTIAL_SUCCESS_STATUS = PARTIAL_SERIES;
        private static final int PARTIAL_FAILURE_STATUS = PARTIAL_SERIES + 1;
 
        @Value("${lcm.model.package:org.openecomp.appc.client.lcm.model}")