Issue #457 Clear all recent opened files + Close menu item

This commit is contained in:
Honfika
2013-12-28 16:01:48 +01:00
parent ddf5f2eb6a
commit 4167fde286
7 changed files with 49 additions and 2 deletions
@@ -260,7 +260,7 @@ public class Configuration {
public static List<String> getRecentFiles() {
String files = recentFiles.get();
if (files == null) {
if (files == null || files.isEmpty()) {
return new ArrayList<>();
}
return Arrays.asList(files.split("::"));