Skip to content

Commit 65eda34

Browse files
committed
codestyle
1 parent bb75b84 commit 65eda34

File tree

1 file changed

+3
-3
lines changed
  • modapi-common/src/main/java/net/badlion/modapicommon/utility

1 file changed

+3
-3
lines changed

modapi-common/src/main/java/net/badlion/modapicommon/utility/Location.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ public String getWorld() {
2222
}
2323

2424
public double getX() {
25-
return x;
25+
return this.x;
2626
}
2727

2828
public double getY() {
29-
return y;
29+
return this.y;
3030
}
3131

3232
public double getZ() {
33-
return z;
33+
return this.z;
3434
}
3535

3636
public static Location of(String world, double x, double y, double z) {

0 commit comments

Comments
 (0)