mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-12-17 21:02:17 -05:00
code style
This commit is contained in:
parent
8f616bcf0c
commit
675d2bd6dd
@ -106,12 +106,12 @@ public class ImportKeysListFragment extends ListFragment implements
|
|||||||
}
|
}
|
||||||
|
|
||||||
static public class BytesLoaderState extends LoaderState {
|
static public class BytesLoaderState extends LoaderState {
|
||||||
byte[] keyBytes;
|
byte[] mKeyBytes;
|
||||||
Uri dataUri;
|
Uri mDataUri;
|
||||||
|
|
||||||
BytesLoaderState(byte[] keyBytes, Uri dataUri) {
|
BytesLoaderState(byte[] keyBytes, Uri dataUri) {
|
||||||
this.keyBytes = keyBytes;
|
mKeyBytes = keyBytes;
|
||||||
this.dataUri = dataUri;
|
mDataUri = dataUri;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -218,7 +218,7 @@ public class ImportKeysListFragment extends ListFragment implements
|
|||||||
switch (id) {
|
switch (id) {
|
||||||
case LOADER_ID_BYTES: {
|
case LOADER_ID_BYTES: {
|
||||||
BytesLoaderState ls = (BytesLoaderState) mLoaderState;
|
BytesLoaderState ls = (BytesLoaderState) mLoaderState;
|
||||||
InputData inputData = getInputData(ls.keyBytes, ls.dataUri);
|
InputData inputData = getInputData(ls.mKeyBytes, ls.mDataUri);
|
||||||
return new ImportKeysListLoader(mActivity, inputData);
|
return new ImportKeysListLoader(mActivity, inputData);
|
||||||
}
|
}
|
||||||
case LOADER_ID_CLOUD: {
|
case LOADER_ID_CLOUD: {
|
||||||
|
Loading…
Reference in New Issue
Block a user