Remove (non-Javadoc) comments

Search and replace using '(?s)/\*\s*\* \(non-Javadoc\).*?\*/' to remove
all "(non-Javadoc)" comments. These comments used to be added
automatically by Eclipse, but are not really necessary.

Issue gh-8945
This commit is contained in:
Phillip Webb
2020-08-05 19:55:36 -07:00
committed by Rob Winch
parent a2f2e9ac8d
commit 3e700e7571
42 changed files with 1 additions and 425 deletions

View File

@@ -251,13 +251,7 @@ public class ConcurrentSessionFilterTests {
final String expiredUrl = "/expired";
ConcurrentSessionFilter filter = new ConcurrentSessionFilter(registry, expiredUrl + "will-be-overrridden") {
/*
* (non-Javadoc)
*
* @see org.springframework.security.web.session.ConcurrentSessionFilter#
* determineExpiredUrl(javax.servlet.http.HttpServletRequest,
* org.springframework.security.core.session.SessionInformation)
*/
@Override
protected String determineExpiredUrl(HttpServletRequest request, SessionInformation info) {
return expiredUrl;