aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSeshu Kumar M <seshu.kumar.m@huawei.com>2018-03-06 10:57:40 +0000
committerGerrit Code Review <gerrit@onap.org>2018-03-06 10:57:40 +0000
commit35ef8944ed4b5d00feb2384f6a1e17ce90cb3783 (patch)
tree2bb6a481b979996014ac376e2c96371f6ba4fff1
parentb8566c560b21c595525e5bcba855c8632a8cd9db (diff)
parent5c7a57b13fe55c7b1cd77f8b3c430300a169417d (diff)
Merge "private method was declared final"
-rw-r--r--asdc-controller/src/main/java/org/openecomp/mso/asdc/util/NotificationLogging.java2
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;