This commit is contained in:
Leijurv 2018-09-08 08:15:10 -07:00
parent 132e277388
commit 9577967da1
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ import baritone.utils.pathing.BetterBlockPos;
* *
* @author leijurv * @author leijurv
*/ */
public class PathNode { public final class PathNode {
/** /**
* The position of this node * The position of this node

View File

@ -60,12 +60,12 @@ public final class BetterBlockPos extends BlockPos {
} }
@Override @Override
public final int hashCode() { public int hashCode() {
return (int) hashCode; return (int) hashCode;
} }
@Override @Override
public final boolean equals(Object o) { public boolean equals(Object o) {
if (o == null) { if (o == null) {
return false; return false;
} }