<
8000
div id="repository-details-container" class="flex-shrink-0" data-turbo-replace style="max-width: 70%;">
-
-
Notifications
You must be signed in to change notification settings - Fork 720
The modified method
getMethodsByNameAndParamCount
is used (and only used) in theFastHierarchy.getSignaturePolymorphicMethod
for resolving polymorphic methods. The for-loop will return the method list's iterator, but the list itself can be modified by another body pack transform thread, causing aConcurrentModificationException 8000
. The patch fix the issue by returning a copy of this list.This patch also fixes the issue #1811 , and a similar issue is #1199 (fixed by #1886 ).