Remove final from static method.
This commit is contained in:
@@ -73,7 +73,7 @@ public class GameUtils {
|
||||
return sb.substring(0, sb.length() - 2);
|
||||
}
|
||||
|
||||
public static final String getAppendedNames(Collection<PhysicalCard> cards) {
|
||||
public static String getAppendedNames(Collection<PhysicalCard> cards) {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
for (PhysicalCard card : cards)
|
||||
sb.append(GameUtils.getCardLink(card) + ", ");
|
||||
|
||||
Reference in New Issue
Block a user