summaryrefslogtreecommitdiffstats
path: root/auth
diff options
context:
space:
mode:
authorThugutla sailakshmi <tsaila10@in.ibm.com>2019-10-03 19:03:23 +0530
committerJonathan Gathman <jonathan.gathman@att.com>2019-10-14 14:37:05 +0000
commit0d9d477f4b41ae78d3b87f6f0ded778b70127a83 (patch)
tree8f544a4e7363fa04922aa033f79f6af185a24d8b /auth
parent21390ec38a9bfd534b0db2e415a64282b0108661 (diff)
Notify.java-Replace type specification in this constructor call with the diamond operator
Issue-ID: AAF-876 Change-Id: If938fa18b1363b125fc78faf612952ab3c32f254 Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
Diffstat (limited to 'auth')
-rw-r--r--auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/Notify.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/Notify.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/Notify.java
index 5ad6163f..54cb7378 100644
--- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/Notify.java
+++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/Notify.java
@@ -290,7 +290,7 @@ import org.onap.aaf.misc.env.util.Chrono;
Pending p;
tt = trans.start("Notify for Pending", Trans.SUB);
- List<String> idList = new ArrayList<String>();
+ List<String> idList = new ArrayList<>();
String id;
try {
for(Entry<String, Pending> es : mpending.entrySet()) {