mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
Otherwise JavaChangeInfoImpl.fillOldParams thinks that old parameter type has no annotation, so if we removed an annotation, it's considered unchanged Fixes IDEA-235090 "Change signature" action removing @NotNull does nothing GitOrigin-RevId: 419990f23330090fc5bd8f92500328db7bd5e15b
8 lines
117 B
Java
8 lines
117 B
Java
import java.lang.annotation.*;
|
|
|
|
class X {
|
|
void test(int x) {}
|
|
|
|
@Target(ElementType.TYPE_USE)
|
|
@interface Foo
|
|
} |