mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Makes the copy constructors argument final.
This commit is contained in:
parent
622a8dcce4
commit
5097b0812b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue