mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 19:50:55 +07:00
(related to the old issues IDEA-95697, IDEA-102872 & IDEA-111785) GitOrigin-RevId: b9750fa39fa60c8562eba7561a7015cfd9548fa2
10 lines
169 B
Java
10 lines
169 B
Java
@foo.NonnullByDefault
|
|
class C {
|
|
Object o;
|
|
@javax.annotation.Nonnull String s;
|
|
|
|
C(Object o, String s) {<caret>
|
|
this.o = o;
|
|
this.s = s;
|
|
}
|
|
} |