mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Disable conversion when anonymous class is annotated (IDEA-197979)
GitOrigin-RevId: 07e199e8ccf2ff58132f642f6bdf178a34802c37
This commit is contained in:
committed by
intellij-monorepo-bot
parent
37158871a3
commit
c53dea2917
+15
@@ -0,0 +1,15 @@
|
||||
// "Replace with lambda" "false"
|
||||
import java.lang.annotation.*;
|
||||
|
||||
class MyTest {
|
||||
final Runnable anonymRunnable = new @A Run<caret>nable() {
|
||||
@Override
|
||||
public void run() {
|
||||
System.out.println();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
@Target({ElementType.TYPE_USE})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@interface A {}
|
||||
Reference in New Issue
Block a user