Skip to content

Commit

Permalink
Merge branch 'improvement/ghi-#9-sonarqube-minor-rule-squid-s00116' i…
Browse files Browse the repository at this point in the history
…nto develop
  • Loading branch information
arcticicestudio committed Dec 3, 2016
2 parents 7efc44c + 354e14f commit 8eb03e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/arcticicestudio/nord/Nord.java
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public enum Nord {
/**
* The RGB color code.
*/
private final Color COLOR;
private final Color color;

/**
* The <a href="https://github.com/arcticicestudio/arcver">ArcVer</a> version of the public API.
Expand All @@ -214,7 +214,7 @@ public enum Nord {
* @param blue the value for the additive primary color {@code blue}
*/
Nord(final int red, final int green, final int blue) {
COLOR = Color.rgb(red, green, blue);
color = Color.rgb(red, green, blue);
}

/**
Expand Down Expand Up @@ -252,7 +252,7 @@ public static String rgb(final Color color) {
* @return the color object
*/
public Color get() {
return COLOR;
return color;
}

/**
Expand Down

0 comments on commit 8eb03e6

Please sign in to comment.