Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmoten committed May 14, 2017
1 parent 68ae206 commit b21fc7b
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
public final class Images {

private Images() {
//prevent instantiation
// prevent instantiation
}
public static double DISTANCE_THRESHOLD=40;

public static double DISTANCE_THRESHOLD = 40;

public static double distance(BufferedImage imgA, BufferedImage imgB) {
// The images must be the same size.
if (imgA.getWidth() == imgB.getWidth() && imgA.getHeight() == imgB.getHeight()) {
Expand Down Expand Up @@ -40,5 +40,4 @@ private static double sqr(double x) {
return x * x;
}


}

0 comments on commit b21fc7b

Please sign in to comment.