Fix more double semicolons in java code

This commit is contained in:
Alex W. Jackson 2022-02-25 10:08:18 -05:00
parent 38f68911b1
commit 2025bca358
4 changed files with 4 additions and 4 deletions

View file

@ -69,7 +69,7 @@ public class PreventDamageToAttachedEffect extends PreventionEffectImpl {
}
sb.append("damage to ");
sb.append(attachmentType.verb());
sb.append(" creature, prevent ").append(amountToPrevent);;
sb.append(" creature, prevent ").append(amountToPrevent);
sb.append(" of that damage");
}
return sb.toString();