Remove unstable EntityInternalMap methods
This commit is contained in:
parent
5c416c3a1d
commit
1dbe07ca7b
@ -204,12 +204,6 @@ public class EntityInternalMap<E extends EntityInternal<E>> extends EntityContai
|
||||
return this.getIdToEntityRaw().containsKey(id);
|
||||
}
|
||||
|
||||
public E remove(String id)
|
||||
{
|
||||
Objects.requireNonNull(id, "id");
|
||||
return this.getIdToEntityRaw().remove(id);
|
||||
}
|
||||
|
||||
public int size()
|
||||
{
|
||||
return this.getIdToEntityRaw().size();
|
||||
@ -220,9 +214,4 @@ public class EntityInternalMap<E extends EntityInternal<E>> extends EntityContai
|
||||
return this.getIdToEntityRaw().isEmpty();
|
||||
}
|
||||
|
||||
public void clear()
|
||||
{
|
||||
this.getIdToEntityRaw().clear();
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user