pull/3/merge
jmoenig 2014-11-24 10:48:49 +01:00
rodzic 0d8cc567e7
commit e48eda6cc0
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -2347,3 +2347,4 @@ ______
* Threads: Fixed #318
* Objects: Fixed #416
* Objects: Fixed #372
* Threads: Fixed #644

Wyświetl plik

@ -1307,7 +1307,7 @@ Process.prototype.doInsertInList = function (element, index, list) {
return null;
}
if (this.inputOption(index) === 'any') {
idx = this.reportRandom(1, list.length());
idx = this.reportRandom(1, list.length() + 1);
}
if (this.inputOption(index) === 'last') {
idx = list.length() + 1;