mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Conflicts: platform/lang-impl/src/com/intellij/psi/impl/source/codeStyle/CodeStyleManagerImpl.java
14 lines
254 B
Java
14 lines
254 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
class Test {
|
|
@NotNull
|
|
public String noNull(@NotNull String text) {
|
|
assert text != null;
|
|
return "";
|
|
}
|
|
|
|
private void foo() {
|
|
@NotNull String str = "";
|
|
assert str != null;
|
|
}
|
|
} |