Skip to content

Commit

Permalink
Merge pull request #180 from webfolderio/master
Browse files Browse the repository at this point in the history
Fix #179 remove Full JRE dependency.
  • Loading branch information
remkop authored Oct 1, 2017
2 parents 7385fc8 + befd7a4 commit d4accd1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
11 changes: 10 additions & 1 deletion src/main/java/picocli/CommandLine.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
*/
package picocli;

import java.awt.Point;
import java.io.File;
import java.io.PrintStream;
import java.lang.annotation.ElementType;
Expand Down Expand Up @@ -4157,4 +4156,14 @@ public MissingTypeConverterException(String msg) {
super(msg);
}
}

public static class Point {
public int x;
public int y;

public Point(int x, int y) {
this.x = x;
this.y = y;
}
}
}
1 change: 0 additions & 1 deletion src/test/java/picocli/CustomLayoutDemo.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import picocli.CommandLine.Help.Layout;
import picocli.CommandLine.Help.TextTable;

import java.awt.Point;
import java.lang.reflect.Field;

import static picocli.CommandLine.*;
Expand Down

0 comments on commit d4accd1

Please sign in to comment.