1
0
mirror of synced 2026-08-05 17:57:15 +00:00

Unnecessary interface modifier

This commit is contained in:
Lars Grefer
2019-08-09 00:42:35 +02:00
parent 40bee457f9
commit d9c1f03b84
23 changed files with 63 additions and 75 deletions
@@ -33,7 +33,7 @@ public interface WebInvocationPrivilegeEvaluator {
* @param uri the URI excluding the context path (a default context path setting will
* be used)
*/
public boolean isAllowed(String uri, Authentication authentication);
boolean isAllowed(String uri, Authentication authentication);
/**
* Determines whether the user represented by the supplied <tt>Authentication</tt>
@@ -52,6 +52,6 @@ public interface WebInvocationPrivilegeEvaluator {
* be used in evaluation whether access should be granted.
* @return true if access is allowed, false if denied
*/
public boolean isAllowed(String contextPath, String uri, String method,
Authentication authentication);
boolean isAllowed(String contextPath, String uri, String method,
Authentication authentication);
}
@@ -34,6 +34,6 @@ interface HttpServletRequestFactory {
* @param response the original {@link HttpServletResponse}. Cannot be null.
* @return a non-null HttpServletRequest
*/
public HttpServletRequest create(HttpServletRequest request,
HttpServletResponse response);
HttpServletRequest create(HttpServletRequest request,
HttpServletResponse response);
}