From 5097b0812b51c4ca021c8fe151d6a1005a48d264 Mon Sep 17 00:00:00 2001 From: "maurer.it" Date: Tue, 22 Mar 2011 23:09:54 -0400 Subject: [PATCH] Makes the copy constructors argument final. --- Mage/src/mage/abilities/keyword/ReboundAbility.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/mage/abilities/keyword/ReboundAbility.java b/Mage/src/mage/abilities/keyword/ReboundAbility.java index aab6dfd4bd7..8a3e850228f 100644 --- a/Mage/src/mage/abilities/keyword/ReboundAbility.java +++ b/Mage/src/mage/abilities/keyword/ReboundAbility.java @@ -79,7 +79,7 @@ public class ReboundAbility extends TriggeredAbilityImpl { this.installReboundEffect = false; } - public ReboundAbility ( ReboundAbility ability ) { + public ReboundAbility ( final ReboundAbility ability ) { super(ability); this.installReboundEffect = ability.installReboundEffect; }