I have this class:
public class TimeIntCo<T> extends TimeValueCo<Integer>
{
}
I decided that the T type is not needed anymore, and it is not used in the class (I know it is always Integer).
However, I have a lot of references for the class that looks like TimeIntCo<Integer>.
Is there a way using Eclipse refactoring to remove the T type without causing any error in references?
I mean to do it in one step and not find&replace.
EDIT: to be more clear - if I just remove T from class I have about 10,000 errors, I don't want to do it manually, and I prefer not to use find&replace because I consider refactor safer.