ignore type substitution on override (IDEABKL-6365)

This commit is contained in:
Anna Kozlova
2012-05-23 21:45:54 +04:00
parent 1afebf45d2
commit 26c733b37a
4 changed files with 35 additions and 9 deletions
@@ -0,0 +1,9 @@
interface Function<S> {
void fun(Function<S> function);
}
class Bar extends Function<String>{
public void fun(Function<String> function) {
<selection>//To change body of implemented methods use File | Settings | File Templates.</selection>
}
}
@@ -0,0 +1,7 @@
interface Function<S> {
void fun(Function<S> function);
}
class Bar extends Function<String>{
<caret>
}