diff options
author | Jonathan Gathman <jonathan.gathman@att.com> | 2019-02-21 13:29:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-02-21 13:29:16 +0000 |
commit | 4c709df6500a95057a92ec3ea5c739738764388d (patch) | |
tree | ddeb87d082f93c003162bf9d7f60ad0b38408413 /auth/auth-batch/src/main | |
parent | d9c0bb04b77f6a637f1fc07b69c90898d672bd34 (diff) | |
parent | c6fe9a321c0fdfc37c776227548228d1252c5dc4 (diff) |
Merge "Sonar Fox: InputIterator.java"
Diffstat (limited to 'auth/auth-batch/src/main')
-rw-r--r-- | auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/InputIterator.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/InputIterator.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/InputIterator.java index 954d6b47..b8b96187 100644 --- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/InputIterator.java +++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/helpers/InputIterator.java @@ -33,7 +33,8 @@ import org.onap.aaf.auth.env.AuthzTrans; public class InputIterator implements Iterable<String> { private BufferedReader in; private final PrintStream out; - private final String prompt, instructions; + private final String prompt; + private final String instructions; private static AuthzTrans trans; public InputIterator(BufferedReader in, PrintStream out, String prompt, String instructions) { @@ -71,6 +72,7 @@ public class InputIterator implements Iterable<String> { @Override public void remove() { + // To Do } }; } |