removed duplicate ;

This commit is contained in:
Karl Tauber
2021-06-25 10:48:00 +02:00
parent 2a732306a1
commit 39d2941099
2 changed files with 3 additions and 3 deletions

View File

@@ -147,7 +147,7 @@ public class FlatAnimatedIconTest
@Override
public void paintIconAnimated( Component c, Graphics g, int x, int y, float animatedValue ) {
Color color = ColorFunctions.mix( onColor, offColor, animatedValue );;
Color color = ColorFunctions.mix( onColor, offColor, animatedValue );
// border
g.setColor( color );
@@ -190,7 +190,7 @@ public class FlatAnimatedIconTest
@Override
public void paintIconAnimated( Component c, Graphics g, int x, int y, float animatedValue ) {
Color color = ColorFunctions.mix( onColor, offColor, animatedValue );;
Color color = ColorFunctions.mix( onColor, offColor, animatedValue );
g.setColor( color );
g.fillRoundRect( x, y, width, height, height, height );