mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
7 lines
240 B
Java
7 lines
240 B
Java
package org.jetbrains.annotations;
|
|
import java.lang.annotation.*;
|
|
|
|
// Stub of @NotNull:
|
|
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE, ElementType.TYPE_USE})
|
|
public @interface NotNull { }
|