insertionList.append("kapow");
insertionList.append("kapowski");
insertionList.append("kapowskidoo");
insertionList.append("kapowskidont");
insertionList.insert(1,blah);
throws an exception.
if (index >= values.length) {
if (index >= data.length) {
It is correct in the other XxxList classes.
Reported in the forum: http://forum.processing.org/two/discussion/5449/stringlist-insert-throwing-exception
throws an exception.
Code shows in the insert() method:
it should be:
It is correct in the other XxxList classes.