Fix typo in reference docs

This commit is contained in:
Lonre Wang 2013-07-31 12:04:47 +08:00 committed by Phillip Webb
parent d9bfac393b
commit 5549bd909e
1 changed files with 2 additions and 2 deletions

View File

@ -458,7 +458,7 @@ Boolean b = simple.booleanList.get(0);
@Autowired
public void configure(MovieFinder movieFinder,
@Value("#{ systemProperties['user.region'] }"} String defaultLocale) {
@Value("#{ systemProperties['user.region'] }") String defaultLocale) {
this.movieFinder = movieFinder;
this.defaultLocale = defaultLocale;
}
@ -474,7 +474,7 @@ Boolean b = simple.booleanList.get(0);
@Autowired
public MovieRecommender(CustomerPreferenceDao customerPreferenceDao,
@Value("#{systemProperties['user.country']}"} String defaultLocale) {
@Value("#{systemProperties['user.country']}") String defaultLocale) {
this.customerPreferenceDao = customerPreferenceDao;
this.defaultLocale = defaultLocale;
}