Spell checker fixes, narrowed scope / made less visible where possible. Little stuff
[zxing.git] / core / src / com / google / zxing / ResultPoint.java
index 31cefe4..0c8e883 100644 (file)
@@ -117,7 +117,7 @@ public class ResultPoint {
   /**
    * Returns the z component of the cross product between vectors BC and BA.
    */
-  public static float crossProductZ(ResultPoint pointA, ResultPoint pointB, ResultPoint pointC) {
+  private static float crossProductZ(ResultPoint pointA, ResultPoint pointB, ResultPoint pointC) {
     float bX = pointB.x;
     float bY = pointB.y;
     return ((pointC.x - bX) * (pointA.y - bY)) - ((pointC.y - bY) * (pointA.x - bX));