mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-11 20:00:46 +00:00
Fix JDK9 issue (#1713)
This commit is contained in:
parent
cd7e0963ce
commit
8f92e3f217
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ public class UserMap extends CacheLoader<String, User> implements IConf {
|
|||
}
|
||||
|
||||
public Set<UUID> getAllUniqueUsers() {
|
||||
return Collections.unmodifiableSet(keys.clone());
|
||||
return Collections.unmodifiableSet(keys);
|
||||
}
|
||||
|
||||
public int getUniqueUsers() {
|
||||
|
|
Loading…
Reference in a new issue