Skip to content

Commit c6c4074

Browse files
author
HackusatePvP
committed
Re-organized constructor parameters.
1 parent cfc1374 commit c6c4074

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/me/piitex/renjava/gui/Window.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ public Window(String title, StageStyle stageStyle, ImageLoader icon, boolean cap
194194
buildStage();
195195
}
196196

197-
public Window(String title, StageStyle stageStyle, boolean fullscreen, boolean maximized, ImageLoader icon) {
197+
public Window(String title, StageStyle stageStyle, ImageLoader icon, boolean fullscreen, boolean maximized) {
198198
this.width = RenJava.CONFIGURATION.getWidth();
199199
this.height = RenJava.CONFIGURATION.getHeight();
200200
this.title = title;
@@ -205,7 +205,7 @@ public Window(String title, StageStyle stageStyle, boolean fullscreen, boolean m
205205
buildStage();
206206
}
207207

208-
public Window(String title, StageStyle stageStyle, boolean fullscreen, boolean maximized, boolean captureInput, ImageLoader icon) {
208+
public Window(String title, StageStyle stageStyle, ImageLoader icon, boolean fullscreen, boolean maximized, boolean captureInput) {
209209
this.width = RenJava.CONFIGURATION.getWidth();
210210
this.height = RenJava.CONFIGURATION.getHeight();
211211
this.captureInput = captureInput;

0 commit comments

Comments
 (0)