Skip to content

Commit

Permalink
Spring Boot Starter: Default attribute and defaultPath to null. Fixes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
codeconsole committed Mar 9, 2024
1 parent feed094 commit 88c5c28
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ public void setMappings(List<HashMap<String, String>> mappings) {
private String metaTagName;
@Value("${sitemesh.decorator.tagRuleBundles:}")
private List<String> bundles;
@Value("${sitemesh.decorator.attribute:}")
@Value("${sitemesh.decorator.attribute:#{null}}")
private String attribute;
@Value("${sitemesh.decorator.default:}")
@Value("${sitemesh.decorator.default:#{null}}")
private String defaultPath;

@Bean
Expand Down

0 comments on commit 88c5c28

Please sign in to comment.