Skip to content

Commit

Permalink
Fix whitespace per PR review comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronxm committed Oct 20, 2016
1 parent 8cb4964 commit c766e57
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@
public class ApplicationContextHolder implements ApplicationContextAware {

private static ApplicationContext applicationContext;

private static class ApplicationContextReferenceUpdater {
void updateApplicationContextReference(final ApplicationContext applicationContext) {
ApplicationContextHolder.applicationContext = applicationContext;
}
void updateApplicationContextReference(final ApplicationContext applicationContext) {
ApplicationContextHolder.applicationContext = applicationContext;
}
}

private static class ApplicationContextReferenceUpdaterHolder {
static ApplicationContextReferenceUpdater INSTANCE = new ApplicationContextReferenceUpdater();
static ApplicationContextReferenceUpdater INSTANCE = new ApplicationContextReferenceUpdater();
}

private ApplicationContextHolder() {
super();
}

@Override
public void setApplicationContext(final ApplicationContext applicationContext) throws BeansException {
public void setApplicationContext(final ApplicationContext applicationContext) throws BeansException {
ApplicationContextReferenceUpdaterHolder.INSTANCE.updateApplicationContextReference(applicationContext);
}

Expand Down

1 comment on commit c766e57

@markopavlovic
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

solid

Please sign in to comment.