diff options
author | Instrumental <jonathan.gathman@att.com> | 2019-01-22 19:38:28 -0600 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2019-01-22 20:20:16 -0600 |
commit | af4d41b40866fababa7fe059d63ba73720fccbac (patch) | |
tree | e3e0d50e0218d722057cfaf55d7a3d9986df689e /auth/auth-batch/src/main | |
parent | ad389b325def6b35dc0331dac0899adceafced07 (diff) |
Failing JUs
Issue-ID: AAF-709
Change-Id: Icbe68f143974034a050462101864e77ba9b5ce49
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/auth-batch/src/main')
-rw-r--r-- | auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/AbsCredBody.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/AbsCredBody.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/AbsCredBody.java index db45e206..6dd5bb25 100644 --- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/AbsCredBody.java +++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/AbsCredBody.java @@ -22,7 +22,6 @@ */ package org.onap.aaf.auth.batch.reports.bodies; -import java.io.IOException; import java.util.List; public abstract class AbsCredBody extends NotifyBody { @@ -33,7 +32,7 @@ public abstract class AbsCredBody extends NotifyBody { @Override public String user(List<String> row) { - if( (row != null) && !row.isEmpty()) { + if( (row != null) && row.size()>1) { return row.get(1); } return null; |