From: Munir Ahmad Date: Tue, 27 Feb 2018 01:35:19 +0000 (-0500) Subject: private method was declared final X-Git-Tag: v1.2.1~510^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=5c7a57b13fe55c7b1cd77f8b3c430300a169417d;p=so.git private method was declared final Change-Id: Iefcec21e50e034384ba5eb3297317e21d71fcb09 Issue-ID: SO-437 Signed-off-by: Munir Ahmad --- diff --git a/asdc-controller/src/main/java/org/openecomp/mso/asdc/util/NotificationLogging.java b/asdc-controller/src/main/java/org/openecomp/mso/asdc/util/NotificationLogging.java index 126114d2d6..bbf8fe6f8c 100644 --- a/asdc-controller/src/main/java/org/openecomp/mso/asdc/util/NotificationLogging.java +++ b/asdc-controller/src/main/java/org/openecomp/mso/asdc/util/NotificationLogging.java @@ -107,7 +107,7 @@ public class NotificationLogging implements InvocationHandler { return buffer.toString(); } - private static final boolean isGetter(Method method) { + private static boolean isGetter(Method method) { // Must start with a valid (and known) prefix boolean prefixFound = false;