TypeAlias: allow getValue() to be overridden

This commit is contained in:
Paul Campbell 2017-10-19 18:42:55 +01:00
parent 4c85e56c80
commit 1e8941b030

View file

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