renamed KeychainNewService to KeychainService

This commit is contained in:
Adithya Abraham Philip
2015-06-24 07:37:50 +05:30
parent 7bc21b8b9d
commit 1c6ae48a07
5 changed files with 13 additions and 13 deletions

View File

@@ -53,7 +53,7 @@ import java.util.concurrent.atomic.AtomicBoolean;
* This Service contains all important long lasting operations for OpenKeychain. It receives Intents with
* data from the activities or other apps, executes them, and stops itself after doing them.
*/
public class KeychainNewService extends Service implements Progressable {
public class KeychainService extends Service implements Progressable {
// messenger for communication (hack)
public static final String EXTRA_MESSENGER = "messenger";
@@ -104,7 +104,7 @@ public class KeychainNewService extends Service implements Progressable {
BaseOperation op;
// just for brevity
KeychainNewService outerThis = KeychainNewService.this;
KeychainService outerThis = KeychainService.this;
if (inputParcel instanceof SignEncryptParcel) {
op = new SignEncryptOperation(outerThis, new ProviderHelper(outerThis),
outerThis, mActionCanceled);