This commit is contained in:
aminecmi 2015-03-08 20:48:02 +01:00
parent b42a5cd879
commit 4a0c2e69db

View File

@ -11,8 +11,9 @@ public class CaseColore extends CaseAbstraite {
}
public String affichageSpecial() {
if (this.couleur.getRGB() < 0)
return String.valueOf(String.valueOf(this.couleur.getRGB()).charAt(0));
if (Color.white.getRGB() != this.couleur.getRGB()) {
return this.couleur.getBlue() + this.couleur.getRed() + this.couleur.getGreen() + "";
}
return " ";
}