From 083a7eb21620467ae1f7d5ba9341e12f75f9cc41 Mon Sep 17 00:00:00 2001 From: Instrumental Date: Thu, 19 Mar 2020 14:43:58 -0500 Subject: minor 2.1.20 changes Update versions to 2.1.20 Issue-ID: AAF-1081 Signed-off-by: Instrumental Change-Id: I1a8706d87f7aceffcc96980cebea6722d20cf11e --- auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/Batch.java | 4 ---- 1 file changed, 4 deletions(-) (limited to 'auth/auth-batch/src') diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/Batch.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/Batch.java index 3058ddc5..983ef819 100644 --- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/Batch.java +++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/Batch.java @@ -501,7 +501,6 @@ public abstract class Batch { if (cls != null) { Constructor cnst = cls.getConstructor(AuthzTrans.class); batch = (Batch) cnst.newInstance(trans); - System.out.println(batch.getClass().getCanonicalName()); env.info().log("Begin", classifier, toolName); } @@ -516,9 +515,6 @@ public abstract class Batch { } if (batch != null) { try { - for(String s : batchArgs) { - System.out.println(s); - } batch.run(trans); } catch (Exception e) { trans.error().log(e); -- cgit 1.2.3-korg