Skip to content

Commit

Permalink
clean up...
Browse files Browse the repository at this point in the history
  • Loading branch information
mattirn committed Apr 6, 2019
1 parent 1555e65 commit 6b046b8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions builtins/src/test/java/org/jline/example/Example.java
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,7 @@ public static void main(String[] args) throws IOException {
Parser parser = null;
List<Consumer<LineReader>> callbacks = new ArrayList<>();

boolean forExit = false;
int index;
for (index=0; index < args.length; index++) {
for (int index=0; index < args.length; index++) {
switch (args[index]) {
/* SANDBOX JANSI
case "-posix":
Expand Down

0 comments on commit 6b046b8

Please sign in to comment.