revert a couple checkstyle fixes.

This commit is contained in:
slapshot5
2011-09-02 06:23:17 +00:00
parent 0eb9b4194b
commit 16878c9a6d

View File

@@ -39,7 +39,7 @@ public class DefaultPlayerZone extends PlayerZone implements java.io.Serializabl
* *
* @param o a {@link java.lang.Object} object. * @param o a {@link java.lang.Object} object.
*/ */
public final void add(final Object o) { public void add(final Object o) {
Card c = (Card) o; Card c = (Card) o;
//Immutable cards are usually emblems,effects and the mana pool and we don't want to log those. //Immutable cards are usually emblems,effects and the mana pool and we don't want to log those.
@@ -163,7 +163,7 @@ public class DefaultPlayerZone extends PlayerZone implements java.io.Serializabl
* *
* @param c an Object * @param c an Object
*/ */
public final void remove(final Object c) { public void remove(final Object c) {
cards.remove((Card) c); cards.remove((Card) c);
update(); update();
} }