extract method: exclude unused type parameters mentioned in return type (IDEA-58456)

This commit is contained in:
anna
2010-10-26 12:19:35 +04:00
parent 9925ece922
commit 72707aa169
4 changed files with 21 additions and 1 deletions
@@ -0,0 +1,6 @@
class Test {
public <T> T method(Class<T> clazz) {
<selection>System.out.println();</selection>
return null;
}
}