android/GameDatabase.java: remove duplicate ".3ds" from allowedExtensions

This commit is contained in:
SachinVin 2019-09-07 22:54:45 +05:30 committed by bunnei
parent ac97f0aeb8
commit f4fa4e8d15

View File

@ -140,7 +140,7 @@ public final class GameDatabase extends SQLiteOpenHelper {
null); // Order of folders is irrelevant.
Set<String> allowedExtensions = new HashSet<String>(Arrays.asList(
".3ds", ".3ds", ".3dsx", ".elf", ".axf", ".cci", ".cxi", ".app"));
".3ds", ".3dsx", ".elf", ".axf", ".cci", ".cxi", ".app"));
// Possibly overly defensive, but ensures that moveToNext() does not skip a row.
folderCursor.moveToPosition(-1);