|
|
@@ -112,10 +112,6 @@ public class RWClass<T> extends AClass<T> implements Serializable {
|
|
|
@SuppressWarnings("unchecked")
|
|
|
@Override
|
|
|
public Class<T> raw() {
|
|
|
- // @todo "raw": we can do better, if we have only 1 "extends" type, we can return it
|
|
|
- // maybe we should add another method like "bounded"?
|
|
|
- // it is not defined very well, because we can extend more than one type and
|
|
|
- // we should use just "isSubclass"
|
|
|
return (Class)Object.class;
|
|
|
}
|
|
|
|
|
|
@@ -126,7 +122,6 @@ public class RWClass<T> extends AClass<T> implements Serializable {
|
|
|
|
|
|
@Override
|
|
|
public String name() {
|
|
|
- // @todo #94 wilcard name
|
|
|
return type.getTypeName();
|
|
|
}
|
|
|
|