mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 04:09:09 +07:00
Fixes IDEA-323691 JSpecify's NullMarked not considered when Java module is annotated GitOrigin-RevId: d84fe78d9e2f0c4a2bbe7471855310762e833ba4
8 lines
255 B
Java
8 lines
255 B
Java
package com.example;
|
|
|
|
public class NullabilityAnnotationOnModule {
|
|
public static void main(String[] args) {
|
|
if (<warning descr="Condition 'args == null' is always 'false'">args == null</warning>) return;
|
|
System.out.println("Hello world!");
|
|
}
|
|
} |