Merge pull request #1117 from danielnelz/development

#1042: Replaced ints with enums
This commit is contained in:
Dominik Schürmann
2015-03-12 13:27:04 +01:00
18 changed files with 108 additions and 73 deletions

View File

@@ -124,7 +124,7 @@ public class ExportHelper {
// handle messages by standard KeychainIntentServiceHandler first
super.handleMessage(message);
if (message.arg1 == KeychainIntentServiceHandler.MESSAGE_OKAY) {
if (message.arg1 == MessageStatus.OKAY.ordinal()) {
// get returned data bundle
Bundle data = message.getData();