Remove a bunch more experimental annotations (#12712)

This commit is contained in:
Jake Potrebic
2025-06-28 07:32:44 -07:00
committed by Nassim Jahnke
parent 7f60924390
commit 371a422567
63 changed files with 81 additions and 159 deletions

View File

@@ -122,7 +122,6 @@ public interface Registry<T extends Keyed> extends Iterable<T> {
*
* @see BlockType
*/
@ApiStatus.Experimental
Registry<BlockType> BLOCK = registryFor(RegistryKey.BLOCK);
/**
* Custom boss bars.
@@ -179,7 +178,6 @@ public interface Registry<T extends Keyed> extends Iterable<T> {
*
* @see ItemType
*/
@ApiStatus.Experimental
Registry<ItemType> ITEM = registryFor(RegistryKey.ITEM);
/**
* Default server loot tables.
@@ -480,7 +478,6 @@ public interface Registry<T extends Keyed> extends Iterable<T> {
* @throws UnsupportedOperationException if this registry doesn't have or support tags
* @see #getTag(TagKey)
*/
@ApiStatus.Experimental
boolean hasTag(TagKey<T> key);
/**
@@ -507,8 +504,8 @@ public interface Registry<T extends Keyed> extends Iterable<T> {
* @see Tag#resolve(Registry)
*/
@ApiStatus.Experimental
default Collection<T> getTagValues(TagKey<T> key) {
Tag<T> tag = getTag(key);
default Collection<T> getTagValues(final TagKey<T> key) {
Tag<T> tag = this.getTag(key);
return tag.resolve(this);
}