From: Jorge Hernandez Date: Mon, 5 Feb 2018 21:39:47 +0000 (+0000) Subject: Merge "Fix last technical debt" X-Git-Tag: v1.2.0~162 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=6425d452d8507e9eeeb4da2f9f7051e602af541e;hp=fe11ab01afebfa9777c3382d28026c805f7d042b;p=policy%2Fengine.git Merge "Fix last technical debt" --- diff --git a/PolicyEngineAPI/src/main/java/org/onap/policy/std/StdPolicyEngine.java b/PolicyEngineAPI/src/main/java/org/onap/policy/std/StdPolicyEngine.java index e0a6d2d76..5842d38d0 100644 --- a/PolicyEngineAPI/src/main/java/org/onap/policy/std/StdPolicyEngine.java +++ b/PolicyEngineAPI/src/main/java/org/onap/policy/std/StdPolicyEngine.java @@ -1092,7 +1092,7 @@ public class StdPolicyEngine { PDPNotification notification; if (this.scheme.equals(NotificationScheme.MANUAL_ALL_NOTIFICATIONS) || this.scheme.equals(NotificationScheme.MANUAL_NOTIFICATIONS)) { - if (notificationType.get(0).equals("ueb")) { + if ("ueb".equals(notificationType.get(0))) { ManualClientEndUEB.start(pdps.get(0), notificationURLList, UNIQUEID); notification = ManualClientEndUEB.result(scheme); } else if (notificationType.get(0).equals(DMAAP)) {