- CheckStyle.

This commit is contained in:
Chris
2012-11-08 14:23:32 +00:00
parent 14a18eb280
commit a9aee60d26

View File

@@ -344,7 +344,7 @@ public final class CardColor implements Comparable<CardColor> {
public boolean sharesColorWith(CardColor ccOther) {
return (this.myColor & ccOther.myColor) != 0;
}
public CardColor getOffColors(CardColor ccOther) {
return CardColor.fromMask(~this.myColor & ccOther.myColor);
}