corrected indentation
This commit is contained in:
@@ -196,7 +196,9 @@ public class KeychainService extends Service implements Progressable {
|
|||||||
return START_NOT_STICKY;
|
return START_NOT_STICKY;
|
||||||
}
|
}
|
||||||
|
|
||||||
Runnable actionRunnable = new Runnable(){@Override public void run() {
|
Runnable actionRunnable = new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
// We have not been cancelled! (yet)
|
// We have not been cancelled! (yet)
|
||||||
mActionCanceled.set(false);
|
mActionCanceled.set(false);
|
||||||
|
|
||||||
@@ -335,7 +337,8 @@ public class KeychainService extends Service implements Progressable {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
PgpDecryptVerify op = new PgpDecryptVerify(mKeychainService, providerHelper, mKeychainService);
|
PgpDecryptVerify op = new PgpDecryptVerify(mKeychainService, providerHelper,
|
||||||
|
mKeychainService);
|
||||||
|
|
||||||
PgpDecryptVerifyInputParcel input = new PgpDecryptVerifyInputParcel(messageBytes)
|
PgpDecryptVerifyInputParcel input = new PgpDecryptVerifyInputParcel(messageBytes)
|
||||||
.setSignedLiteralData(true)
|
.setSignedLiteralData(true)
|
||||||
@@ -538,9 +541,13 @@ public class KeychainService extends Service implements Progressable {
|
|||||||
if (!intent.getAction().equals(ACTION_IMPORT_KEYRING)) {
|
if (!intent.getAction().equals(ACTION_IMPORT_KEYRING)) {
|
||||||
// import keyring handles stopping service on its own
|
// import keyring handles stopping service on its own
|
||||||
stopSelf();
|
stopSelf();
|
||||||
} }};
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
Thread actionThread = new Thread(actionRunnable);
|
Thread actionThread = new Thread(actionRunnable);
|
||||||
actionThread.start();
|
actionThread.start();
|
||||||
|
|
||||||
return START_NOT_STICKY;
|
return START_NOT_STICKY;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user