mirror of
https://github.com/PaperMC/Paper.git
synced 2025-05-31 04:31:12 +00:00
Co-authored-by: Bjarne Koll <git@lynxplay.dev> Co-authored-by: Jake Potrebic <jake.m.potrebic@gmail.com> Co-authored-by: Lulu13022002 <41980282+Lulu13022002@users.noreply.github.com> Co-authored-by: MiniDigger | Martin <admin@minidigger.dev> Co-authored-by: Nassim Jahnke <nassim@njahnke.dev> Co-authored-by: Noah van der Aa <ndvdaa@gmail.com> Co-authored-by: Owen1212055 <23108066+Owen1212055@users.noreply.github.com> Co-authored-by: Shane Freeder <theboyetronic@gmail.com> Co-authored-by: Spottedleaf <Spottedleaf@users.noreply.github.com> Co-authored-by: Tamion <70228790+notTamion@users.noreply.github.com> Co-authored-by: Warrior <50800980+Warriorrrr@users.noreply.github.com>
37 lines
1.2 KiB
Diff
37 lines
1.2 KiB
Diff
--- a/com/mojang/math/OctahedralGroup.java
|
|
+++ b/com/mojang/math/OctahedralGroup.java
|
|
@@ -123,6 +_,12 @@
|
|
}
|
|
);
|
|
|
|
+ static {
|
|
+ for (OctahedralGroup octahedralGroup : values()) {
|
|
+ octahedralGroup.initializeRotationDirections(); // Paper - Avoid Lazy Initialization for Enum Fields
|
|
+ }
|
|
+ }
|
|
+
|
|
private OctahedralGroup(final String name, final SymmetricGroup3 permutation, final boolean invertX, final boolean invertY, final boolean invertZ) {
|
|
this.name = name;
|
|
this.invertX = invertX;
|
|
@@ -160,7 +_,7 @@
|
|
return this.name;
|
|
}
|
|
|
|
- public Direction rotate(Direction direction) {
|
|
+ public void initializeRotationDirections() { // Paper - Avoid Lazy Initialization for Enum Fields
|
|
if (this.rotatedDirections == null) {
|
|
this.rotatedDirections = Util.makeEnumMap(Direction.class, direction1 -> {
|
|
Direction.Axis axis = direction1.getAxis();
|
|
@@ -171,6 +_,11 @@
|
|
});
|
|
}
|
|
|
|
+ // Paper start - Avoid Lazy Initialization for Enum Fields
|
|
+ }
|
|
+
|
|
+ public Direction rotate(Direction direction) {
|
|
+ // Paper end - Avoid Lazy Initialization for Enum Fields
|
|
return this.rotatedDirections.get(direction);
|
|
}
|
|
|