Hey
How come section 5.2.3., bullet 4 was changed from:
* the required type parameter is an actual type, the bean type
parameter is a type variable and the actual type is assignable *to*
the upper bound, if any, of the type variable...
to:
* the required type parameter is an actual type, the bean type
parameter is a type variable and the actual type is assignable
*from* the upper bound, if any, of the type variable...
Doesn't this mean bean Dao<T extends Persistent> will not be assignable
to Dao<User>?
M.