diff options
author | Thugutla sailakshmi <tsaila10@in.ibm.com> | 2019-11-12 16:45:39 +0530 |
---|---|---|
committer | Thugutla sailakshmi <tsaila10@in.ibm.com> | 2019-11-12 16:45:54 +0530 |
commit | 4dcf1fc0d60376f7faafdb8184dcefbcc0426f80 (patch) | |
tree | 4846dd208a79d76d397d4122b751ab128fc88810 /auth/auth-batch/src | |
parent | 333a035c095351e496328ec72c82beb65507e71b (diff) |
NotInOrg.java-Replace the type specification in this constructor call with the diamond operator ("<>").
Issue-ID: AAF-876
Change-Id: I84ec99f43ad23cdd4b167eeec90dc80bbdc1d210
Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
Diffstat (limited to 'auth/auth-batch/src')
-rw-r--r-- | auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/NotInOrg.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/NotInOrg.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/NotInOrg.java index 82542e15..fadd0682 100644 --- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/NotInOrg.java +++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/NotInOrg.java @@ -99,7 +99,7 @@ public class NotInOrg extends Batch { @Override protected void run(AuthzTrans trans) { try { - Map<String,Boolean> checked = new TreeMap<String, Boolean>(); + Map<String,Boolean> checked = new TreeMap<>(); trans.info().log("Process Organization Identities"); trans.info().log("User Roles"); |