mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
this improves dfa performance and fixes cases when a single global != relation would prevent states from merging
15 lines
225 B
Java
15 lines
225 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
class Some {
|
|
public static void main(String arg, @Nullable StringBuilder sb) {
|
|
if (arg != null) {
|
|
return;
|
|
}
|
|
|
|
if (sb != null) { }
|
|
|
|
if (sb != null) { }
|
|
}
|
|
|
|
}
|