final
This commit is contained in:
parent
132e277388
commit
9577967da1
@ -26,7 +26,7 @@ import baritone.utils.pathing.BetterBlockPos;
|
||||
*
|
||||
* @author leijurv
|
||||
*/
|
||||
public class PathNode {
|
||||
public final class PathNode {
|
||||
|
||||
/**
|
||||
* The position of this node
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user