org.jsoup.internal.FieldsAreNonnullByDefault Maven / Gradle / Ivy
Go to download
SDK for dev_appserver (local development) with some of the dependencies shaded (repackaged)
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 {
}