Skip to content

Commit 55e72b1

Browse files
committed
sdk: remove _get_component_stability
1 parent 3a36fcb commit 55e72b1

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

sdk/mx.sdk/mx_sdk_vm_impl.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2294,12 +2294,6 @@ def __str__(self):
22942294
return 'Building {}'.format(self.subject.name)
22952295

22962296

2297-
def _get_component_stability(component):
2298-
if mx_sdk_vm.base_jdk_version() not in (17, 20):
2299-
return "experimental"
2300-
return component.stability
2301-
2302-
23032297
def default_jvm_components():
23042298
"""
23052299
Components that, for now, must be included in the JVM.
@@ -3245,7 +3239,7 @@ def graalvm_show(args, forced_graalvm_dist=None):
32453239
print("Config name: {}".format(graalvm_dist.vm_config_name))
32463240
print("Components:")
32473241
for component in sorted(graalvm_dist.components, key=lambda c: c.name):
3248-
print(" - {} ('{}', /{}, {})".format(component.name, component.short_name, component.dir_name, _get_component_stability(component)))
3242+
print(" - {} ('{}', /{})".format(component.name, component.short_name, component.dir_name))
32493243

32503244
if forced_graalvm_dist is None:
32513245
# Custom GraalVM distributions with a forced component list do not yet support launchers and libraries.

0 commit comments

Comments
 (0)