Skip to content

Commit 5f42c64

Browse files
committed
added missing final
1 parent 41326f1 commit 5f42c64

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Item Creator/src/main/java/org/broken/arrow/library/itemcreator/meta/map/pixel/MapPixel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

Item Creator/src/main/java/org/broken/arrow/library/itemcreator/meta/map/pixel/TextOverlay.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)