diff --git a/sources/Data/Collections/ArrayList.uc b/sources/Data/Collections/ArrayList.uc index 2fd58f1..b074fdf 100644 --- a/sources/Data/Collections/ArrayList.uc +++ b/sources/Data/Collections/ArrayList.uc @@ -280,10 +280,8 @@ public final function AcediaObject GetItem(int index) { local AcediaObject result; - if (ValidateIndex(index)) - { + if (ValidateIndex(index)) { result = storedObjects[index]; - storedObjects[index] = none; } if (result != none) { result.NewRef();