Skip to content

Commit

Permalink
Indentation wtf
Browse files Browse the repository at this point in the history
  • Loading branch information
slepmog committed May 1, 2014
1 parent e19e20b commit 01bbe8f
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public final AlertDialog initiateScan() {
* if a prompt was needed, or null otherwise.
*/
public final AlertDialog initiateScan(int cameraId) {
return initiateScan(ALL_CODE_TYPES, cameraId);
return initiateScan(ALL_CODE_TYPES, cameraId);
}

/**
Expand All @@ -279,7 +279,7 @@ public final AlertDialog initiateScan(int cameraId) {
* if a prompt was needed, or null otherwise.
*/
public final AlertDialog initiateScan(Collection<String> desiredBarcodeFormats) {
return initiateScan(desiredBarcodeFormats, -1);
return initiateScan(desiredBarcodeFormats, -1);
}

/**
Expand Down Expand Up @@ -309,10 +309,10 @@ public final AlertDialog initiateScan(Collection<String> desiredBarcodeFormats,
intentScan.putExtra("SCAN_FORMATS", joinedByComma.toString());
}

// check requested camera ID
if (cameraId > -1) {
intentScan.putExtra("SCAN_CAMERA_ID", cameraId);
}
// check requested camera ID
if (cameraId > -1) {
intentScan.putExtra("SCAN_CAMERA_ID", cameraId);
}

String targetAppPackage = findTargetAppPackage(intentScan);
if (targetAppPackage == null) {
Expand Down

0 comments on commit 01bbe8f

Please sign in to comment.