mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
9 lines
149 B
Java
9 lines
149 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
class C {
|
|
private @Nullable String s;
|
|
|
|
public C(@Nullable String s) {
|
|
this.s = s;
|
|
}
|
|
} |