Community
Participate
Working Groups
I20100810-0800 The "Remove unnecessary casts" Clean Up should remove unnecessary parentheses like the quick fix already does: class IntComp implements Comparator<Integer> { public int compare(Integer o1, Integer o2) { return ((Integer) o1).intValue() - ((Integer) o2).intValue(); } }
Fixed in HEAD (along with Bug 335173).
Verified in N20110224-2000, thanks. This was really annoying...