Created
January 17, 2019 11:18
-
-
Save gluntn/38b8c8958fea912356840d3e318eb375 to your computer and use it in GitHub Desktop.
fd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public boolean equals(Object o) { | |
| if(!(o instanceof Triangle) || o == null) return false; | |
| Triangle that = (Triangle)o; | |
| return this.side1 == that.side1 && this.side2 == that.side2 && this.side3 == that.side3; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment