Skip to content

Commit

Permalink
Fix #179 remove Full JRE dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
webfolderio committed Aug 31, 2017
1 parent 174963f commit 7905281
Showing 1 changed file with 10 additions and 1 deletion.
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 @@ -4136,4 +4135,14 @@ public MissingTypeConverterException(String msg) {
super(msg);
}
}

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

public Point(int x, int y) {
this.x = x;
this.y = y;
}
}
}

0 comments on commit 7905281

Please sign in to comment.