Skip to content

Commit

Permalink
fixed files form Chart #11
Browse files Browse the repository at this point in the history
  • Loading branch information
tdurieux committed Mar 7, 2017
1 parent 2e09d4e commit c23e794
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/Chart/11/org/jfree/chart/util/ShapeUtilities.java
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public static boolean equal(GeneralPath p1, GeneralPath p2) {
return false;
}
PathIterator iterator1 = p1.getPathIterator(null);
PathIterator iterator2 = p1.getPathIterator(null);
PathIterator iterator2 = p2.getPathIterator(null);
double[] d1 = new double[6];
double[] d2 = new double[6];
boolean done = iterator1.isDone() && iterator2.isDone();
Expand Down

0 comments on commit c23e794

Please sign in to comment.