Fix unnecessary unboxing/reboxing of Floats in Rotation

This commit is contained in:
Brady 2018-08-09 18:26:17 -05:00
parent 4ea4e5fa43
commit 9fd207040e
No known key found for this signature in database
GPG Key ID: 73A788379A197567
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ import net.minecraft.util.Tuple;
public class Rotation extends Tuple<Float, Float> {
public Rotation(float yaw, float pitch) {
public Rotation(Float yaw, Float pitch) {
super(yaw, pitch);
}
}