Remove unnecessary error logs

This commit is contained in:
Dominik Schürmann 2014-07-02 20:53:16 +02:00
parent 12db94abca
commit 3512ac7199
2 changed files with 2 additions and 2 deletions

View file

@ -170,7 +170,7 @@ public class DecryptActivity extends DrawerActivity {
// end activity
finish();
}
} else {
} else if (ACTION_DECRYPT.equals(action)) {
Log.e(Constants.TAG,
"Include the extra 'text' or an Uri with setData() in your Intent!");
}

View file

@ -249,7 +249,7 @@ public class EncryptActivity extends DrawerActivity implements
// end activity
finish();
}
} else {
} else if (ACTION_ENCRYPT.equals(action)) {
Log.e(Constants.TAG,
"Include the extra 'text' or an Uri with setData() in your Intent!");
}