cull(engine-cleanup): pass-9 cascade round 1 after UILabel stub
This commit is contained in:
@@ -69,18 +69,4 @@ public class BetterList<T>
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public void RemoveAt(int index)
|
||||
{
|
||||
if (buffer != null && index > -1 && index < size)
|
||||
{
|
||||
size--;
|
||||
buffer[index] = default(T);
|
||||
for (int i = index; i < size; i++)
|
||||
{
|
||||
buffer[i] = buffer[i + 1];
|
||||
}
|
||||
buffer[size] = default(T);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user