The qualified call annotation identify super qualified calls as recursive.
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) {
chain.doFilter(request, response);
}
the qualified here is chain, this happens for any qualifier for example like super.
The qualified call annotation identify super qualified calls as recursive.
the qualified here is
chain, this happens for any qualifier for example likesuper.