stdlib: Remove deprecated "artifact" type

Change-Id: I40331242912d330bcd3924587c85211732e93f6f
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/62531
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Maintainer: Jason Lowe-Power <power.jg@gmail.com>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Bobby R. Bruce
2022-08-17 15:21:44 -07:00
committed by Bobby Bruce
parent 291be70b1e
commit eb1242d96a

View File

@@ -191,10 +191,7 @@ def _get_resources(resources_group: Dict) -> Dict[str, Dict]:
to_return = {}
for resource in resources_group:
# 'artifact' is the old naming, we keep it here for
# backwards compatibility, but it can be removed with time:
# https://gem5-review.googlesource.com/c/public/gem5-resources/+/51169.
if resource["type"] == "artifact" or resource["type"] == "resource":
if resource["type"] == "resource":
# If the type is "resource" then we add it directly to the map
# after a check that the name is unique.
if resource["name"] in to_return.keys():