Declared several variables in Method declaration final to make the code Java 1.6 compatible

This commit is contained in:
CrushedPixel
2015-07-03 11:31:50 +02:00
parent c5924dd570
commit a1941a8be5
3 changed files with 3 additions and 3 deletions

View File

@@ -45,7 +45,7 @@ public class GuiConnectPart extends GuiStudioPart {
}
@Override
public void applyFilters(File replayFile, File outputFile) {
public void applyFilters(File replayFile, final File outputFile) {
this.outputFile = outputFile;
filterThread = new Thread(new Runnable() {
@Override

View File

@@ -34,7 +34,7 @@ public class GuiTrimPart extends GuiStudioPart {
}
@Override
public void applyFilters(File replayFile, File outputFile) {
public void applyFilters(final File replayFile, final File outputFile) {
this.outputFile = outputFile;
filterThread = new Thread(new Runnable() {
@Override

View File

@@ -61,7 +61,7 @@ public class GuiReplayViewer extends GuiScreen implements GuiYesNoCallback {
}
private void reloadFiles() {
GuiLoadingListEntry loadingListEntry = new GuiLoadingListEntry();
final GuiLoadingListEntry loadingListEntry = new GuiLoadingListEntry();
replayGuiList.clearEntries();
replayGuiList.addEntry(loadingListEntry);