Skip to content

Commit

Permalink
Syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Poincare committed Apr 24, 2012
1 parent 59454fa commit 55705eb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions sixthsense-java/PointR.java
Expand Up @@ -10,7 +10,7 @@ public PointR(double X, double Y) {
this.T = 0;
}

public PointR(double X, double Y, double T) {
public PointR(double X, double Y, int T) {
this.X = X;
this.Y = Y;
this.T = T;
Expand All @@ -22,8 +22,7 @@ public PointR(PointR p) {
T = p.T;
}

@Override
public boolean equals(Object o) {
public boolean equals(PointR o) {
if(this == o) {
return true;
}
Expand Down

0 comments on commit 55705eb

Please sign in to comment.