This commit is contained in:
Leijurv
2018-09-08 08:15:10 -07:00
parent 132e277388
commit 9577967da1
2 changed files with 3 additions and 3 deletions

View File

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

View File

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