Make TypeAlias.getValue() private
This commit is contained in:
parent
770467c1d5
commit
9d31ca2694
1 changed files with 1 additions and 4 deletions
|
@ -93,11 +93,8 @@ public abstract class TypeAlias<T> {
|
|||
* Get the value of the type alias.
|
||||
*
|
||||
* @return the value
|
||||
*
|
||||
* @deprecated try using {@link #map(Function)}
|
||||
*/
|
||||
@Deprecated
|
||||
public T getValue() {
|
||||
private T getValue() {
|
||||
return value;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue