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 69ec58391f
commit 9c6448460b

View File

@ -140,7 +140,7 @@ public final class GameDatabase extends SQLiteOpenHelper {
null); // Order of folders is irrelevant. null); // Order of folders is irrelevant.
Set<String> allowedExtensions = new HashSet<String>(Arrays.asList( 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. // Possibly overly defensive, but ensures that moveToNext() does not skip a row.
folderCursor.moveToPosition(-1); folderCursor.moveToPosition(-1);