Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.0
-
None
Description
Im targetting 2.0 as it is the official download.
The fix is quite simple.
FILE: RamFileObject
ORIGINAL
void resize(int newSize)
// when shrinking size > newSize thus an AOOBE will be thrown.
FIXED
void resize(final int newSize)