@@ -37,7 +37,7 @@ public class CoverRendererBuilder {
3737 private static final ColorQuadCache [] PLATE_QUADS ;
3838 private static final EnumMap <EnumFacing , SubListAddress > PLATE_COORDS = new EnumMap <>(EnumFacing .class );
3939
40- private static final UVMapper defaultMapper = UVMapper .standard (0 );
40+ private static final UVMapper DEFAULT_MAPPER = UVMapper .standard (0 );
4141
4242 static {
4343 PLATE_QUADS = new ColorQuadCache [Textures .VOLTAGE_CASINGS .length ];
@@ -64,7 +64,7 @@ protected static SubListAddress buildPlates(List<RecolorableBakedQuad> quads, En
6464 int start = quads .size ();
6565 Pair <Vector3f , Vector3f > box = CoverRendererValues .PLATE_BOXES .get (facing );
6666 for (EnumFacing dir : EnumFacing .values ()) {
67- quads .add (QuadHelper .buildQuad (dir , box , CoverRendererBuilder .defaultMapper , sprite ));
67+ quads .add (QuadHelper .buildQuad (dir , box , CoverRendererBuilder .DEFAULT_MAPPER , sprite ));
6868 }
6969 return new SubListAddress (start , quads .size ());
7070 }
@@ -78,8 +78,8 @@ protected static void addPlates(List<BakedQuad> quads, List<BakedQuad> plateQuad
7878 protected final TextureAtlasSprite sprite ;
7979 protected final TextureAtlasSprite spriteEmissive ;
8080
81- protected UVMapper mapper = defaultMapper ;
82- protected UVMapper mapperEmissive = defaultMapper ;
81+ protected UVMapper mapper = DEFAULT_MAPPER ;
82+ protected UVMapper mapperEmissive = DEFAULT_MAPPER ;
8383
8484 protected ColorQuadCache plateQuads = PLATE_QUADS [1 ];
8585
0 commit comments