mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-10 19:15:06 -05:00
parent
2a34d0e0e4
commit
f6e7b92ced
@ -51,9 +51,8 @@ public class ImportKeysListLoader
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Context mContext;
|
final Context mContext;
|
||||||
|
final InputData mInputData;
|
||||||
InputData mInputData;
|
|
||||||
|
|
||||||
ArrayList<ImportKeysListEntry> mData = new ArrayList<ImportKeysListEntry>();
|
ArrayList<ImportKeysListEntry> mData = new ArrayList<ImportKeysListEntry>();
|
||||||
AsyncTaskResultWrapper<ArrayList<ImportKeysListEntry>> mEntryListWrapper;
|
AsyncTaskResultWrapper<ArrayList<ImportKeysListEntry>> mEntryListWrapper;
|
||||||
@ -67,6 +66,11 @@ public class ImportKeysListLoader
|
|||||||
@Override
|
@Override
|
||||||
public AsyncTaskResultWrapper<ArrayList<ImportKeysListEntry>> loadInBackground() {
|
public AsyncTaskResultWrapper<ArrayList<ImportKeysListEntry>> loadInBackground() {
|
||||||
|
|
||||||
|
// This has already been loaded! nvm any further, just return
|
||||||
|
if (mEntryListWrapper != null) {
|
||||||
|
return mEntryListWrapper;
|
||||||
|
}
|
||||||
|
|
||||||
mEntryListWrapper = new AsyncTaskResultWrapper<ArrayList<ImportKeysListEntry>>(mData, null);
|
mEntryListWrapper = new AsyncTaskResultWrapper<ArrayList<ImportKeysListEntry>>(mData, null);
|
||||||
|
|
||||||
if (mInputData == null) {
|
if (mInputData == null) {
|
||||||
|
Loading…
Reference in New Issue
Block a user