diff options
author | anushadasari <danush10@in.ibm.com> | 2019-08-29 13:02:30 +0530 |
---|---|---|
committer | anushadasari <danush10@in.ibm.com> | 2019-08-29 13:02:43 +0530 |
commit | be917802e7f98cc2b3cc67529f0981bdac1ecfed (patch) | |
tree | b4f82a9be6221cdf9202bcb72431051db6e3456d | |
parent | 886cd982dff59ef087b94a3b6eb0e4be37259019 (diff) |
Sonar- AAF AUTH BATCH
Remove this unused import 'java.io.IOException'
Remove the declaration of thrown exception 'java.io.IOException', as it cannot be thrown from constructor's body
Issue-ID: AAF-957
Change-Id: Id61b054edafe1ea1766972339ac7e9146198f125
Signed-off-by: anushadasari <danush10@in.ibm.com>
3 files changed, 3 insertions, 3 deletions
diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/NotifyCredBody.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/NotifyCredBody.java index 7001c024..8eaf6a86 100644 --- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/NotifyCredBody.java +++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/NotifyCredBody.java @@ -22,7 +22,7 @@ */ package org.onap.aaf.auth.batch.reports.bodies; -import java.io.IOException; + import java.util.GregorianCalendar; import java.util.List; diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneMonthNotifyCredBody.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneMonthNotifyCredBody.java index 8747ebf8..417d4be4 100644 --- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneMonthNotifyCredBody.java +++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneMonthNotifyCredBody.java @@ -26,7 +26,7 @@ import org.onap.aaf.auth.batch.helpers.ExpireRange; import org.onap.aaf.cadi.Access; public class OneMonthNotifyCredBody extends NotifyCredBody { - public OneMonthNotifyCredBody(Access access) throws IOException { + public OneMonthNotifyCredBody(Access access){ super(access, ExpireRange.ONE_MONTH); } diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneWeekNotifyCredBody.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneWeekNotifyCredBody.java index a1277d55..dae48d85 100644 --- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneWeekNotifyCredBody.java +++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/OneWeekNotifyCredBody.java @@ -26,7 +26,7 @@ import org.onap.aaf.auth.batch.helpers.ExpireRange; import org.onap.aaf.cadi.Access; public class OneWeekNotifyCredBody extends NotifyCredBody { - public OneWeekNotifyCredBody(Access access) throws IOException { + public OneWeekNotifyCredBody(Access access){ super(access, ExpireRange.ONE_WEEK); } |