summaryrefslogtreecommitdiffstats
path: root/auth
diff options
context:
space:
mode:
authorJonathan Gathman <jonathan.gathman@att.com>2019-08-22 13:23:15 +0000
committerGerrit Code Review <gerrit@onap.org>2019-08-22 13:23:15 +0000
commit013931b3432b73eabe70238d88003a25aa261733 (patch)
tree6f6335f8939ab1629d4edb889cbc20d7bb4a370e /auth
parentdac9d5a29cd91848a16b07aaf4f9b037413cbae2 (diff)
parent21bb68c5ca6be430f085c120792f055d5aefbd27 (diff)
Merge "Remove the declaration of thrown exception"
Diffstat (limited to 'auth')
-rw-r--r--auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/BatchDataView.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/BatchDataView.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/BatchDataView.java
index ab3a49fa..d3209a02 100644
--- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/BatchDataView.java
+++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/BatchDataView.java
@@ -49,12 +49,12 @@ public class BatchDataView implements DataView {
private final CQLBatchLoop cqlBatch;
private final Session session;
- public BatchDataView(final AuthzTrans trans, final Session session, final boolean dryRun ) throws APIException, IOException {
+ public BatchDataView(final AuthzTrans trans, final Session session, final boolean dryRun ){
this.session = session;
cqlBatch = new CQLBatchLoop(new CQLBatch(trans.info(),session),50,dryRun);
}
- public Session getSession(AuthzTrans trans) throws APIException, IOException {
+ public Session getSession(AuthzTrans trans){
return session;
}