mirror of
https://github.com/konsoletyper/teavm.git
synced 2025-01-06 10:15:18 +08:00
Merge pull request #91 from shannah/issue_88_part2
Another fix for Collections.shuffle(). Without this fix, shuffle doesn'...
This commit is contained in:
commit
efe0b75206
@ -283,7 +283,7 @@ public class TCollections extends TObject {
|
||||
shuffleRandomAccess(list, rnd);
|
||||
} else {
|
||||
TList<Object> randomAccess = new TArrayList<>(list);
|
||||
shuffleRandomAccess(list, rnd);
|
||||
shuffleRandomAccess(randomAccess, rnd);
|
||||
list.clear();
|
||||
((TList<Object>)list).addAll(randomAccess);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user