Make TypeAlias.getValue() public again
Another revert from 0.3.0. TypeAlias is not meant to be monadic in any form. It is a simple alias for another (non-generic) type.
This commit is contained in:
parent
2f16ab6714
commit
3c2b7dd5a1
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ public abstract class TypeAlias<T> {
|
||||||
*
|
*
|
||||||
* @return the value
|
* @return the value
|
||||||
*/
|
*/
|
||||||
private T getValue() {
|
public T getValue() {
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue