Makes the copy constructors argument final.

This commit is contained in:
maurer.it 2011-03-22 23:09:54 -04:00
parent 622a8dcce4
commit 5097b0812b

View file

@ -79,7 +79,7 @@ public class ReboundAbility extends TriggeredAbilityImpl<ReboundAbility> {
this.installReboundEffect = false;
}
public ReboundAbility ( ReboundAbility ability ) {
public ReboundAbility ( final ReboundAbility ability ) {
super(ability);
this.installReboundEffect = ability.installReboundEffect;
}