mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
[change signature] ensure base method is refactored in functional expression case (IDEA-276192)
don't reorder usages for no reason GitOrigin-RevId: 2bdeee871d696c7351addc4a1a8e886d148f6186
This commit is contained in:
committed by
intellij-monorepo-bot
parent
853f84791d
commit
d43848c086
@@ -0,0 +1,13 @@
|
||||
class Clazz {
|
||||
public static void main(String[] args) {
|
||||
Child child = x -> System.out.println();
|
||||
}
|
||||
}
|
||||
|
||||
interface Parent {
|
||||
void exec<caret>ute(int i);
|
||||
}
|
||||
|
||||
interface Child extends Parent {
|
||||
void execute(int i);
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
class Clazz {
|
||||
public static void main(String[] args) {
|
||||
Child child = () -> System.out.println();
|
||||
}
|
||||
}
|
||||
|
||||
interface Parent {
|
||||
void exec<caret>ute();
|
||||
}
|
||||
|
||||
interface Child extends Parent {
|
||||
void execute();
|
||||
}
|
||||
Reference in New Issue
Block a user