1
0
mirror of synced 2026-08-06 18:27:45 +00:00

Ensure all files end with a new line

Update all files to ensure that they always end with a new-line
character.

Issue gh-8945
This commit is contained in:
Phillip Webb
2020-07-27 11:07:14 -07:00
committed by Rob Winch
parent 218480fb7c
commit 4d487e8dc3
64 changed files with 62 additions and 67 deletions
@@ -55,4 +55,4 @@ public final class CompositeLogoutHandler implements LogoutHandler {
}
}
}
}
@@ -158,4 +158,4 @@ abstract class AbstractSessionFixationProtectionStrategy
}
}
}
@@ -86,4 +86,4 @@ public class CompositeSessionAuthenticationStrategy implements SessionAuthentica
return getClass().getName() + " [delegateStrategies = " + this.delegateStrategies + "]";
}
}
}
@@ -56,4 +56,4 @@ public final class WebAsyncManagerIntegrationFilter extends OncePerRequestFilter
filterChain.doFilter(request, response);
}
}
}
@@ -30,4 +30,4 @@ public class CsrfException extends AccessDeniedException {
super(message);
}
}
}
@@ -54,4 +54,4 @@ public final class CsrfLogoutHandler implements LogoutHandler {
this.csrfTokenRepository.saveToken(null, request, response);
}
}
}
@@ -47,4 +47,4 @@ public interface CsrfToken extends Serializable {
*/
String getToken();
}
}
@@ -37,4 +37,4 @@ public class InvalidCsrfTokenException extends CsrfException {
+ "'.");
}
}
}
@@ -28,4 +28,4 @@ public class MissingCsrfTokenException extends CsrfException {
super("Could not verify the provided CSRF token because your session was not found.");
}
}
}
@@ -19,4 +19,4 @@
* To use, simply add the {@code JaasApiIntegrationFilter} to the Spring Security filter
* chain.
*/
package org.springframework.security.web.jaasapi;
package org.springframework.security.web.jaasapi;
@@ -19,4 +19,4 @@
* @author Jitendra Singh
* @since 4.2
*/
package org.springframework.security.web.jackson2;
package org.springframework.security.web.jackson2;
@@ -50,4 +50,4 @@ public final class InvalidSessionAccessDeniedHandler implements AccessDeniedHand
this.invalidSessionStrategy.onInvalidSessionDetected(request, response);
}
}
}
@@ -78,4 +78,4 @@ public final class AndRequestMatcher implements RequestMatcher {
return "AndRequestMatcher [requestMatchers=" + this.requestMatchers + "]";
}
}
}
@@ -272,4 +272,4 @@ public final class MediaTypeRequestMatcher implements RequestMatcher {
+ ", ignoredMediaTypes=" + this.ignoredMediaTypes + "]";
}
}
}
@@ -60,4 +60,4 @@ public class NegatedRequestMatcher implements RequestMatcher {
return "NegatedRequestMatcher [requestMatcher=" + this.requestMatcher + "]";
}
}
}
@@ -78,4 +78,4 @@ public final class OrRequestMatcher implements RequestMatcher {
return "OrRequestMatcher [requestMatchers=" + this.requestMatchers + "]";
}
}
}
@@ -61,4 +61,4 @@ public class HttpStatusEntryPointTests {
assertThat(this.response.getStatus()).isEqualTo(HttpStatus.UNAUTHORIZED.value());
}
}
}
@@ -152,4 +152,4 @@ public class MediaTypeRequestMatcherRequestHCNSTests {
assertThat(matcher.matches(this.request)).isFalse();
}
}
}