Delete Point.java

main
sigonasr2, Sig, Sigo 3 years ago committed by GitHub
parent c375edf0ed
commit dad2e25ac4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 32
      Point.java

@ -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 + ")";
}
}
Loading…
Cancel
Save