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:
Paul Campbell 2017-12-09 17:26:29 +00:00
parent 2f16ab6714
commit 3c2b7dd5a1

View file

@ -87,7 +87,7 @@ public abstract class TypeAlias<T> {
*
* @return the value
*/
private T getValue() {
public T getValue() {
return value;
}
}