Skip to content

Commit

Permalink
Remove unused overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
hollingsworthd committed Nov 25, 2015
1 parent 8034932 commit 23bcbe8
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions src/com/machinepublishers/jbrowserdriver/JavaFxObjectServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -172,19 +172,4 @@ static void unbox(Class[] classes) {
: (classes[i].equals(Long.class) ? long.class : (classes[i].equals(Integer.class) ? int.class : (classes[i].equals(Boolean.class) ? boolean.class : classes[i])))));
}
}

@Override
public boolean equals(Object obj) {
return object.equals(obj);
}

@Override
public int hashCode() {
return object.hashCode();
}

@Override
public String toString() {
return object.toString();
}
}

0 comments on commit 23bcbe8

Please sign in to comment.