Registry#addChecked -> #registerChecked

This commit is contained in:
dfsek
2021-07-05 19:21:21 -07:00
parent 888e9e8def
commit d4a784ddb5
4 changed files with 4 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ public interface OpenRegistry<T> extends Registry<T> {
* @param value Value to register.
* @throws DuplicateEntryException If an entry with the same identifier is already present.
*/
void addChecked(String identifier, T value) throws DuplicateEntryException;
void registerChecked(String identifier, T value) throws DuplicateEntryException;
/**
* Clears all entries from the registry.