Skip to content

Commit

Permalink
fixed files form Chart #20
Browse files Browse the repository at this point in the history
  • Loading branch information
tdurieux committed Mar 7, 2017
1 parent ff41106 commit c2efee1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/Chart/20/org/jfree/chart/plot/ValueMarker.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public ValueMarker(double value, Paint paint, Stroke stroke) {
*/
public ValueMarker(double value, Paint paint, Stroke stroke,
Paint outlinePaint, Stroke outlineStroke, float alpha) {
super(paint, stroke, paint, stroke, alpha);
super(paint, stroke, outlinePaint, outlineStroke, alpha);
this.value = value;
}

Expand Down

0 comments on commit c2efee1

Please sign in to comment.