Skip to content

Commit 3903d4a

Browse files
committed
removed comment out code.
1 parent 1126f6c commit 3903d4a

File tree

1 file changed

+2
-2
lines changed
  • Item Creator/src/main/java/org/broken/arrow/library/itemcreator/meta

1 file changed

+2
-2
lines changed

Item Creator/src/main/java/org/broken/arrow/library/itemcreator/meta/ColorMeta.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ public void setRgb(final int red, final int green, final int blue) {
167167
*/
168168
public void setRgb(final int alpha, final int red, final int green, final int blue) {
169169
Validate.checkBoolean(alpha < 0 || red < 0 || green < 0 || blue < 0, "You can't use negative numbers for the arbg color.");
170-
final Color colorArg = Color.fromRGB( red, green, blue); //Color.fromARGB(alpha, red, green, blue);
171-
this.setColor(colorArg);
170+
final Color colorFromRBG = Color.fromRGB( red, green, blue);
171+
this.setColor(colorFromRBG);
172172
}
173173

174174
/**

0 commit comments

Comments
 (0)