File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/meta Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 3333import java .util .List ;
3434import java .util .Map ;
3535import java .util .Optional ;
36+ import java .util .concurrent .ConcurrentHashMap ;
3637
3738import org .graalvm .compiler .api .replacements .SnippetReflectionProvider ;
3839import org .graalvm .compiler .nodes .StructuredGraph ;
@@ -293,7 +294,7 @@ public class HostedUniverse implements Universe {
293294 protected List <HostedField > orderedFields ;
294295 protected List <HostedMethod > orderedMethods ;
295296
296- Map <String , Integer > uniqueHostedMethodNames = new HashMap <>();
297+ Map <String , Integer > uniqueHostedMethodNames = new ConcurrentHashMap <>();
297298
298299 public HostedUniverse (Inflation bb ) {
299300 this .bb = bb ;
You can’t perform that action at this time.
0 commit comments