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
11 lines
179 B
Java
11 lines
179 B
Java
class Test {
|
|
public String noNull(String text) {
|
|
assert text != null;
|
|
return "";
|
|
}
|
|
|
|
private void foo() {
|
|
String str = "";
|
|
assert str != null;
|
|
}
|
|
} |