File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Item Creator/src/main/java/org/broken/arrow/library/itemcreator/meta/map/pixel Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public abstract class MapPixel {
2121 * @param x the x-coordinate of the pixel
2222 * @param y the y-coordinate of the pixel
2323 */
24- protected MapPixel (int x , int y ) {
24+ protected MapPixel (final int x ,final int y ) {
2525 this .x = x ;
2626 this .y = y ;
2727 }
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public class TextOverlay extends MapPixel {
3030 * @param y the y-coordinate of the text overlay.
3131 * @param text the text to display.
3232 */
33- public TextOverlay (final int x , final int y , @ Nonnull final String text ) {
33+ public TextOverlay (final int x , final int y , @ Nonnull final String text ) {
3434 super (x , y );
3535 this .text = text ;
3636 }
You can’t perform that action at this time.
0 commit comments