Revert "Merge pull request #134 from ImCarib/1.6.x"

This reverts commit 0b677cb4de, reversing
changes made to a355b1d0c8.
This commit is contained in:
DroppingAnvil
2020-06-08 15:52:29 -04:00
parent 7b94367eb4
commit cdc07ed5eb
43 changed files with 2322 additions and 881 deletions

View File

@@ -36,8 +36,8 @@ public class TempLine {
if (line.p1.x == this.p1.x && line.p2.x == this.p2.x && line.p1.y == this.p1.y && line.p2.y == this.p2.y) {
return true;
}
return line.p1.x == this.p2.x && line.p2.x == this.p1.x && line.p1.y == this.p2.y && line.p2.y == this.p1.y;
}
return line.p1.x == this.p2.x && line.p2.x == this.p1.x && line.p1.y == this.p2.y && line.p2.y == this.p1.y;
}
@Override
public int hashCode() {