File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -1298,7 +1298,6 @@ class GraalConfig:
12981298 def __init__ (self ):
12991299 self .jvmci_dists = []
13001300 self .jvmci_jars = []
1301- self .jvmci_parent_dists = []
13021301 self .jvmci_parent_jars = []
13031302 self .boot_dists = []
13041303 self .boot_jars = []
@@ -1316,10 +1315,9 @@ def __init__(self):
13161315 self .boot_dists .append (d )
13171316 self .boot_jars .append (d .classpath_repr ())
13181317
1319- self .jvmci_parent_dists = []
1320- self .jvmci_parent_jars = [jar .classpath_repr () for jar in self .jvmci_parent_dists ]
1318+ self .jvmci_parent_jars = []
13211319
1322- self .dists = self .jvmci_dists + self .jvmci_parent_dists + self . boot_dists
1320+ self .dists = self .jvmci_dists + self .boot_dists
13231321 self .jars = self .jvmci_jars + self .jvmci_parent_jars + self .boot_jars
13241322
13251323 self .dists_dict = {e .suite .name + ':' + e .name : e for e in self .dists }
You can’t perform that action at this time.
0 commit comments