android: logging/whitespace cleanup.

Addressing feedback from https://camlistore.org/r/3416

Change-Id: Ied7e86e12861ec27be0e2f3d41aefcd92ec5d1a3
This commit is contained in:
Bill Thiede 2014-08-12 21:00:44 -07:00
parent 413163e8f9
commit 12a9f6b1ed
1 changed files with 2 additions and 6 deletions

View File

@ -24,12 +24,8 @@ public class QRPreference extends Preference {
@Override @Override
protected void onClick() { protected void onClick() {
Log.v(TAG, "onClick");
SettingsActivity activity = (SettingsActivity) this.getContext(); SettingsActivity activity = (SettingsActivity) this.getContext();
IntentIntegrator integrator = new IntentIntegrator(activity); IntentIntegrator integrator = new IntentIntegrator(activity);
AlertDialog alert = integrator.initiateScan(IntentIntegrator.QR_CODE_TYPES); integrator.initiateScan(IntentIntegrator.QR_CODE_TYPES);
if (alert != null) {
Log.v(TAG, "user was prompted to install barcode scanner app.");
}
} }
} }