Update IntegerList.java

This commit is contained in:
Pétur Ingi Egilsson 2015-03-20 22:37:24 +01:00
parent 0d5e471f7c
commit e64dbaec86
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ public class IntegerList {
int newLength; int newLength;
if (_data.length == 0) { if (_data.length == 0) {
newLength = INITIAL_SIZE; newLength = INITIAL_SIZE;
} else {a } else {
newLength = _data.length; newLength = _data.length;
} }