Fix inconsistent method names

This commit is contained in:
Daniel Saukel 2020-01-27 01:35:38 +01:00
parent eb18ee9bce
commit da149bd51e

View File

@ -51,14 +51,14 @@ public interface DungeonsAPI extends Plugin {
* *
* @return a {@link Registry} of the sign types * @return a {@link Registry} of the sign types
*/ */
Registry<String, Class<? extends DungeonSign>> getSignTypes(); Registry<String, Class<? extends DungeonSign>> getSignRegistry();
/** /**
* Returns a {@link Registry} of the trigger types. * Returns a {@link Registry} of the trigger types.
* *
* @return a {@link Registry} of the trigger types * @return a {@link Registry} of the trigger types
*/ */
Registry<String, Class<? extends Trigger>> getTriggerTypes(); Registry<String, Class<? extends Trigger>> getTriggerRegistry();
/* Object initialization */ /* Object initialization */
/** /**