Skip to content

Commit b868cdf

Browse files
committed
Merge pull request #45882 from quaff
* pr/45882: Inner class 'SpringBootWebFluxSecurityConfiguration' should be static Closes gh-45882
2 parents ca21600 + 0ebe00a commit b868cdf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/reactive/ReactiveSecurityAutoConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 the original author or authors.
2+
* Copyright 2012-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@ public class ReactiveSecurityAutoConfiguration {
5454

5555
@ConditionalOnWebApplication(type = ConditionalOnWebApplication.Type.REACTIVE)
5656
@Configuration(proxyBeanMethods = false)
57-
class SpringBootWebFluxSecurityConfiguration {
57+
static class SpringBootWebFluxSecurityConfiguration {
5858

5959
@Bean
6060
@ConditionalOnMissingBean({ ReactiveAuthenticationManager.class, ReactiveUserDetailsService.class,

0 commit comments

Comments
 (0)