Skip to content

Commit 5c67262

Browse files
committed
AppChooser: add "this." qualifiers
1 parent ee985e0 commit 5c67262

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/src/main/java/jme3utilities/nifty/test/AppChooser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public void guiInitializeApplication() {
170170
InputMode inputMode = getDefaultInputMode();
171171

172172
// Create and attach a controller for the main (and only) screen.
173-
mainScreen = new GuiScreenController(
173+
this.mainScreen = new GuiScreenController(
174174
"AppChooser/mainScreen",
175175
"Interface/Nifty/screens/AppChooser/mainScreen.xml",
176176
InitialState.Enabled);
@@ -224,7 +224,7 @@ public void run() {
224224
for (int i = 0; i < mainClasses.length; ++i) {
225225
String appName = mainClasses[i].getSimpleName();
226226
if (arg.equals(appName)) {
227-
chosenAppIndex = i;
227+
this.chosenAppIndex = i;
228228
break;
229229
}
230230
}

0 commit comments

Comments
 (0)