use of net.minecraft.util.com.mojang.authlib.GameProfile in project mc-dev by Bukkit.
the class UserCache method b.
private UserCacheEntry b(UUID uuid) {
UserCacheEntry usercacheentry = (UserCacheEntry) this.d.get(uuid);
if (usercacheentry != null) {
GameProfile gameprofile = usercacheentry.a();
LinkedList linkedlist = this.e;
synchronized (this.e) {
this.e.remove(gameprofile);
this.e.addFirst(gameprofile);
}
}
return usercacheentry;
}
Aggregations