Biiig standardization of whitespace. 2 space indents now, no tabs.
[zxing.git] / core / src / com / google / zxing / qrcode / detector / FinderPattern.java
index 1d98fe9..18cfafd 100644 (file)
@@ -65,8 +65,8 @@ public final class FinderPattern implements ResultPoint {
    */
   boolean aboutEquals(float moduleSize, float i, float j) {
     return Math.abs(i - posY) <= moduleSize &&
-           Math.abs(j - posX) <= moduleSize &&
-           (Math.abs(moduleSize - estimatedModuleSize) <= 1.0f ||
+        Math.abs(j - posX) <= moduleSize &&
+        (Math.abs(moduleSize - estimatedModuleSize) <= 1.0f ||
             Math.abs(moduleSize - estimatedModuleSize) / estimatedModuleSize <= 0.1f);
   }