Skip to content

Commit

Permalink
adds default color value. may solve #58
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoKiaru committed Jan 14, 2020
1 parent 69a0343 commit 5f1441c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
public class ColorSourceCreatorCommand implements Command {

@Parameter
ColorRGB color;
ColorRGB color = new ColorRGB(255,255,255);

@Parameter
SourceAndConverter[] sources_in;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
public class SourceColorChangerCommand implements Command {

@Parameter
ColorRGB color;
ColorRGB color = new ColorRGB(255,255,255);

@Parameter
SourceAndConverter[] sources_in;
Expand Down

0 comments on commit 5f1441c

Please sign in to comment.