Skip to content

Commit

Permalink
Variable must be final
Browse files Browse the repository at this point in the history
  • Loading branch information
deathmarine committed Mar 27, 2017
1 parent 00fa40b commit d4ba35d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/us/deathmarine/luyten/MainMenuBar.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public void updateRecentFiles() {

while (li.hasPrevious()) {
String path = li.previous();
File file = new File(path);
final File file = new File(path);

if (!file.exists()) {
rfSaveNeeded = true;
Expand Down

0 comments on commit d4ba35d

Please sign in to comment.