1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Remove @NullUnmarked

Closes gh-18491
This commit is contained in:
Robert Winch
2026-01-20 11:10:29 -06:00
committed by Rob Winch
parent 3f66d8b770
commit 9f8ac34c3b
12 changed files with 85 additions and 90 deletions
@@ -24,7 +24,6 @@ import jakarta.servlet.ServletContext;
import jakarta.servlet.ServletRequest;
import jakarta.servlet.ServletResponse;
import jakarta.servlet.http.HttpServletRequest;
import org.jspecify.annotations.NullUnmarked;
import org.jspecify.annotations.Nullable;
import org.springframework.context.ApplicationContext;
@@ -180,7 +179,6 @@ public abstract class AbstractAuthorizeTag {
return this.method;
}
@NullUnmarked
public void setMethod(String method) {
this.method = (method != null) ? method.toUpperCase(Locale.ENGLISH) : null;
}