1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Got rid of unnecessary instance variable

This commit is contained in:
cketti 2012-03-18 21:48:22 +01:00
parent 6bdaac4353
commit 09bc07596e

View File

@ -47,8 +47,6 @@ public class ChooseFolder extends K9ListActivity {
boolean showOptionNone = false; boolean showOptionNone = false;
boolean showDisplayableOnly = false; boolean showDisplayableOnly = false;
private List<String> folderList;
/** /**
* What folders to display.<br/> * What folders to display.<br/>
* Initialized to whatever is configured * Initialized to whatever is configured
@ -370,10 +368,12 @@ public class ChooseFolder extends K9ListActivity {
} }
}); });
int selectedFolder = -1; int selectedFolder = -1;
// We're not allowed to change the adapter from a background thread, so we use
// a java.util.List to build a list of the folder names. /*
// We'll add the folder names to the adapter from the UI-thread (see the 'finally' block). * We're not allowed to change the adapter from a background thread, so we collect the
folderList = new ArrayList<String>(); * folder names and update the adapter in the UI thread (see finally block).
*/
final List<String> folderList = new ArrayList<String>();
try { try {
int position = 0; int position = 0;
for (String name : localFolders) { for (String name : localFolders) {