mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 21:43:33 +07:00
ignore type substitution on override (IDEABKL-6365)
This commit is contained in:
@@ -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>
|
||||
}
|
||||
Reference in New Issue
Block a user