Skip to content

Commit

Permalink
Complete HttpSecurity Deprecation notices
Browse files Browse the repository at this point in the history
  • Loading branch information
rs017991 authored and rwinch committed Sep 20, 2024
1 parent 6b8c17b commit 0a0721b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1112,9 +1112,9 @@ public HttpSecurity rememberMe(Customizer<RememberMeConfigurer<HttpSecurity>> re
* </pre>
* @return the {@link ExpressionUrlAuthorizationConfigurer} for further customizations
* @throws Exception
* @deprecated For removal in 7.0. Use {@link #authorizeHttpRequests()} instead
* @deprecated For removal in 7.0. Use {@link #authorizeHttpRequests(Customizer)} instead
*/
@Deprecated
@Deprecated(since = "6.1", forRemoval = true)
public ExpressionUrlAuthorizationConfigurer<HttpSecurity>.ExpressionInterceptUrlRegistry authorizeRequests()
throws Exception {
ApplicationContext context = getContext();
Expand Down Expand Up @@ -1227,9 +1227,9 @@ public ExpressionUrlAuthorizationConfigurer<HttpSecurity>.ExpressionInterceptUrl
* for the {@link ExpressionUrlAuthorizationConfigurer.ExpressionInterceptUrlRegistry}
* @return the {@link HttpSecurity} for further customizations
* @throws Exception
* @deprecated For removal in 7.0. Use {@link #authorizeHttpRequests} instead
* @deprecated For removal in 7.0. Use {@link #authorizeHttpRequests(Customizer)} instead
*/
@Deprecated
@Deprecated(since = "6.1", forRemoval = true)
public HttpSecurity authorizeRequests(
Customizer<ExpressionUrlAuthorizationConfigurer<HttpSecurity>.ExpressionInterceptUrlRegistry> authorizeRequestsCustomizer)
throws Exception {
Expand Down

0 comments on commit 0a0721b

Please sign in to comment.