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.
|
* Get the value of the type alias.
|
||||||
*
|
*
|
||||||
* @return the value
|
* @return the value
|
||||||
*
|
|
||||||
* @deprecated try using {@link #map(Function)}
|
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
private T getValue() {
|
||||||
public T getValue() {
|
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue