ctubbsii opened a new issue #2203: URL: https://github.com/apache/accumulo/issues/2203
JLine is used for a REPL command-line tool in accumulo-shell. However, we seem to also be using it for trivial line reading for non-REPL use cases. This is overkill, and makes it more likely that JLine upgrades will break code that doesn't need to depend on it. For many of these cases, a simple `System.console().readLine()` (or `.readPassword()`) will do. JLine should be removed from all simple line reading parts of our code, and used only where it is actually needed (most likely, the only place it's actually needed is in accumulo-shell and test code). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
