mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-24 14:28:56 +07:00
GitOrigin-RevId: da8631f18633bf615ac606746928e28cb1ac446d
13 lines
278 B
Java
13 lines
278 B
Java
// "Change 1st parameter of method 'annotatedParam()' from 'Integer' to 'String'" "true"
|
|
import javax.annotation.Nonnull;
|
|
|
|
class Hello {
|
|
void foo() {
|
|
annotatedParam("<caret>1");
|
|
}
|
|
|
|
void annotatedParam(@Nonnull Integer integer) {
|
|
System.out.println(integer);
|
|
}
|
|
}
|