summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Gathman <jonathan.gathman@att.com>2019-07-12 22:26:19 +0000
committerGerrit Code Review <gerrit@onap.org>2019-07-12 22:26:19 +0000
commit3c06c9887d6f88524f06b46f2593f6eef640826b (patch)
tree631684be5b9e2346a084f1f416a607c716736189
parent671e20a4ac2de8330a0f29dc71c59ad154985c82 (diff)
parent5e1256abb2a3ef1b5781a066759708d89725fa12 (diff)
Merge "Sonar Fix: NotifyCredBody.java"
-rw-r--r--auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/NotifyCredBody.java10
1 files changed, 8 insertions, 2 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 1f8d9782..72fed8ab 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
@@ -3,6 +3,8 @@
* org.onap.aaf
* ===========================================================================
* Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
+ *
+ * Modifications Copyright (C) 2019 IBM.
* ===========================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -35,7 +37,7 @@ public abstract class NotifyCredBody extends NotifyBody {
private final String explanation;
private final String instruction;
- public NotifyCredBody(Access access, String name) throws IOException {
+ public NotifyCredBody(Access access, String name) {
super(access,"cred",name);
// Default
@@ -76,7 +78,11 @@ public abstract class NotifyCredBody extends NotifyBody {
println(sb,indent,"<th>Warnings</th>");
indent-=2;
println(sb,indent,"</tr>");
- String theid, type, info, expires, warnings;
+ String theid;
+ String type;
+ String info;
+ String expires;
+ String warnings;
GregorianCalendar gc = new GregorianCalendar();
for(List<String> row : rows.get(id)) {
theid=row.get(1);