mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
revert a couple checkstyle fixes.
This commit is contained in:
@@ -39,7 +39,7 @@ public class DefaultPlayerZone extends PlayerZone implements java.io.Serializabl
|
||||
*
|
||||
* @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;
|
||||
|
||||
//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
|
||||
*/
|
||||
public final void remove(final Object c) {
|
||||
public void remove(final Object c) {
|
||||
cards.remove((Card) c);
|
||||
update();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user