Since refactoring the buildin IDE cannot handle what you want, then if you're bored in the find / replace manual, this will work
while read -r file; do sed -i 's/TimeIntCo<[[:alpha:]]*>/TimeIntCo/g' "$file"; done < <(find /path/to/src/ -type f -iname "*.java")`
It will work, since any TimeIntCo<T> or TimeIntCo<Integer> will be deleted in it, but it will not fix your decrlarations T someMethod(T t) inside TimeIntCo
Offering an alternative, you also cannot use an environment like unix or Bash, so just ignore it.
c00kiemon5ter
source share