Skip to content

Commit

Permalink
Wrapping
Browse files Browse the repository at this point in the history
  • Loading branch information
philwebb committed Feb 7, 2023
1 parent 4fdd565 commit ee235f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -557,8 +557,8 @@ public class SpringApplication {
*/
protected void postProcessApplicationContext(ConfigurableApplicationContext context) {
if (this.beanNameGenerator != null) {
context.getBeanFactory().registerSingleton(AnnotationConfigUtils.CONFIGURATION_BEAN_NAME_GENERATOR,
this.beanNameGenerator);
context.getBeanFactory()
.registerSingleton(AnnotationConfigUtils.CONFIGURATION_BEAN_NAME_GENERATOR, this.beanNameGenerator);
}
if (this.resourceLoader != null) {
if (context instanceof GenericApplicationContext) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ core.formatter.alignment_for_parameters_in_constructor_declaration=16
core.formatter.alignment_for_parameters_in_method_declaration=16
core.formatter.alignment_for_relational_operator=0
core.formatter.alignment_for_resources_in_try=80
core.formatter.alignment_for_selector_in_method_invocation=16
core.formatter.alignment_for_selector_in_method_invocation=80
core.formatter.alignment_for_shift_operator=0
core.formatter.alignment_for_string_concatenation=16
core.formatter.alignment_for_superclass_in_type_declaration=16
Expand Down

0 comments on commit ee235f0

Please sign in to comment.