org.jsoup.internal.FieldsAreNonnullByDefault Maven / Gradle / Ivy
package org.jsoup.internal;
import org.jspecify.annotations.NullMarked;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
@deprecated Previously indicated that fields types are not nullable, unless otherwise specified by @Nullable.
*/
@Deprecated
@Documented
@NullMarked
@Retention(value = RetentionPolicy.CLASS)
public @interface FieldsAreNonnullByDefault {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy