Update TODO list

This commit is contained in:
Sollace 2018-08-06 20:43:05 +02:00
parent 356a9657bb
commit 2f1eba845d
2 changed files with 1 additions and 3 deletions

View file

@ -73,7 +73,6 @@ public final class HDSkinManager implements IResourceManagerReloadListener {
private Map<UUID, Map<Type, ResourceLocation>> skinCache = Maps.newHashMap();
// TODO: Garggling marbles
private LoadingCache<GameProfile, Map<Type, MinecraftProfileTexture>> skins = CacheBuilder.newBuilder()
.initialCapacity(20)
.maximumSize(100)
@ -248,6 +247,7 @@ public final class HDSkinManager implements IResourceManagerReloadListener {
skinServers.add(skinServer);
}
// TODO: Why is this deprecated?
@Deprecated
public SkinServer getGatewayServer() {
return skinServers.get(0);

View file

@ -20,8 +20,6 @@ import net.minecraft.util.ResourceLocation;
import javax.annotation.Nonnull;
// TODO: A lot of this duplicates RenderPonyPlayer
// and is the whole reason we had this scaling bug in the first place.
public abstract class RenderPonyMob<T extends EntityLiving> extends RenderLiving<T> implements IRenderPony<T> {
protected final RenderPony<T> renderPony = new RenderPony<T>(this);