Processes command-line arguments using a single output stream. @param args the command-line arguments @param out the output stream used for both normal and error output @deprecated use #processArgs(String[], PrintStream, PrintStream)
(String[] args, final PrintStream out)
| 127 | * @deprecated use {@link #processArgs(String[], PrintStream, PrintStream)} |
| 128 | */ |
| 129 | @Deprecated |
| 130 | static void processArgs(String[] args, final PrintStream out) { |
| 131 | processArgs(args, out, out); |
| 132 | } |
| 133 | |
| 134 | // package-level visibility for testing purposes (just usage/errors at this stage) |
| 135 | /** |
no test coverage detected