Commit 5a5a7be4 authored by Phillip Webb's avatar Phillip Webb

Polish

parent 7a8be3d6
......@@ -45,6 +45,7 @@ import org.springframework.security.config.annotation.authentication.configurers
* Configuration for a Spring Security in-memory {@link AuthenticationManager}.
*
* @author Dave Syer
* @author Rob Winch
*/
@Configuration
@ConditionalOnBean(ObjectPostProcessor.class)
......@@ -107,8 +108,6 @@ public class AuthenticationManagerConfiguration extends
* allowed in the configure stage. It is not allowed because we guarantee all init
* methods are invoked before configure, which cannot be guaranteed at this point.</li>
* </ul>
*
* @author Rob Winch
*/
private class BootDefaultingAuthenticationConfigurerAdapter extends
GlobalAuthenticationConfigurerAdapter {
......
......@@ -113,8 +113,8 @@ public class AutoConfigurationReportLoggingInitializerTests {
ReflectionUtils.setField(this.logFactoryField, null, new MockLogFactory());
}
catch (Exception e) {
throw new IllegalStateException("Failed to set logFactory", e);
catch (Exception ex) {
throw new IllegalStateException("Failed to set logFactory", ex);
}
this.initializer = new AutoConfigurationReportLoggingInitializer();
......
......@@ -130,7 +130,7 @@
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>provided</scope>
</dependency>
</dependency>
</dependencies>
<build>
<plugins>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment