diff options
author | Munir Ahmad <munir.ahmad@bell.ca> | 2018-02-26 20:35:19 -0500 |
---|---|---|
committer | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2018-03-05 14:46:56 +0000 |
commit | 5c7a57b13fe55c7b1cd77f8b3c430300a169417d (patch) | |
tree | a56fc361d877877d403ccf71b26821a4285b3791 /asdc-controller/src | |
parent | 51f4f8eb9cfaa582ab2a6780cee762b0a98912b2 (diff) |
private method was declared final
Change-Id: Iefcec21e50e034384ba5eb3297317e21d71fcb09
Issue-ID: SO-437
Signed-off-by: Munir Ahmad <munir.ahmad@bell.ca>
Diffstat (limited to 'asdc-controller/src')
-rw-r--r-- | asdc-controller/src/main/java/org/openecomp/mso/asdc/util/NotificationLogging.java | 2 |
1 files changed, 1 insertions, 1 deletions
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; |