insert no method call explicit type arguments when there's no profit in it (IDEA-71128)

This commit is contained in:
peter
2011-06-29 14:45:48 +02:00
parent 34db570064
commit 924dde5961
6 changed files with 50 additions and 21 deletions
@@ -0,0 +1,9 @@
public class Foo {
{
bar(foo());<caret>
}
<T> T foo() {}
void bar(Object s) {}
}
@@ -0,0 +1,9 @@
public class Foo {
{
bar(fo<caret>)
}
<T> T foo() {}
void bar(Object s) {}
}