diff --git a/Point.java b/Point.java deleted file mode 100644 index d55943a..0000000 --- a/Point.java +++ /dev/null @@ -1,32 +0,0 @@ -package sig; - -public class Point { - int x,y; - - public Point(int x, int y) { - super(); - this.x = x; - this.y = y; - } - - public int getX() { - return x; - } - - public void setX(int x) { - this.x = x; - } - - public int getY() { - return y; - } - - public void setY(int y) { - this.y = y; - } - - @Override - public String toString() { - return "Point(" + x + "," + y + ")"; - } -}