Deprecate ArenaClass getLowercaseName() method.

This commit deprecates the "lowercase name" method on ArenaClass to push
the new slug concept throughout the code base in a "healthy" way.
This commit is contained in:
Andreas Troelsen 2020-11-01 14:16:47 +01:00
parent aed57f5cb6
commit 1b46e17e38

View File

@ -68,7 +68,9 @@ public class ArenaClass
/**
* Get the lowercase class name.
* @return the lowercase class name
* @deprecated use {@link #getSlug()} instead
*/
@Deprecated
public String getLowercaseName() {
return lowercaseName;
}