hibernate-orm/checkerstubs/javax.lang.astub
Jan Schatteman d325a5e90d HHH-16515 - Get rid of nullness suppression in jpamodelgen TypeUtils
Signed-off-by: Jan Schatteman <jschatte@redhat.com>
2023-09-20 09:14:41 +02:00

11 lines
295 B
Plaintext

// Checkerframework stubs for javax.lang
package javax.lang.model.util;
import org.checkerframework.checker.nullness.qual.Nullable;
public interface Types {
public WildcardType getWildcardType(
@Nullable TypeMirror extendsBound,
@Nullable TypeMirror superBound);
}