Make TypeAlias.getValue() private

This commit is contained in:
Paul Campbell 2017-11-26 11:35:25 +00:00
parent 770467c1d5
commit 9d31ca2694

View file

@ -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;
}
}