No need for _replacedSkills to be public.

This commit is contained in:
MobiusDevelopment
2022-10-04 21:06:12 +00:00
parent 26d118bd37
commit f88bb58c4a
11 changed files with 11 additions and 11 deletions

View File

@@ -850,7 +850,7 @@ public class Player extends Playable
/** Map containing all custom skills of this player. */
private Map<Integer, Skill> _customSkills = null;
public final Set<Integer> _replacedSkills = ConcurrentHashMap.newKeySet(1);
private final Set<Integer> _replacedSkills = ConcurrentHashMap.newKeySet(1);
private final OlympiadFightHistory _olympiadFightHistory = new OlympiadFightHistory(this);