[Android] Fix possible leak of fileCursor

This commit is contained in:
Tyler Dunn 2016-04-13 23:46:45 -04:00
parent 2959f3607c
commit 6a870c2417
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ public final class GameDatabase extends SQLiteOpenHelper
} }
} }
fileCursor.close();
folderCursor.close(); folderCursor.close();
database.close(); database.close();
} }