Solved
Not annotated parameter overrides @NotNull parameter
I'm working on a servlet. And the response argument is throwing the below sonar issue.
Not annotated parameter overrides @126844 parameter
How can I deal with this?

I'm working on a servlet. And the response argument is throwing the below sonar issue.
Not annotated parameter overrides @126844 parameter
How can I deal with this?

this annotation means that the parent method has some @NotNull / @NonNull annotation on the parameter, while the overriding method has no.
To fix it, you need to put the same annotation on the overriding method.
Please try
import org.jetbrains.annotations.NotNull;
@Override
protected void doGet(final @NotNull SlingHttpServletRequest request,
final @NotNull SlingHttpServletResponse response) throws ServletException, IOException
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.