This is an automated email from the ASF dual-hosted git repository.
rgoers pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j-audit.git
The following commit(s) were added to refs/heads/master by this push:
new c63551b Missing curly brackets at value gitUserName annotation
c63551b is described below
commit c63551b7ccfd6fa606d84577aa4dbb734d42963c
Author: Eugene Chan <[email protected]>
AuthorDate: Wed Feb 13 11:44:26 2019 -0500
Missing curly brackets at value gitUserName annotation
---
.../java/org/apache/logging/log4j/catalog/config/WebMvcAppContext.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/log4j-catalog/log4j-catalog-editor/src/main/java/org/apache/logging/log4j/catalog/config/WebMvcAppContext.java
b/log4j-catalog/log4j-catalog-editor/src/main/java/org/apache/logging/log4j/catalog/config/WebMvcAppContext.java
index 5239d23..cdddb07 100644
---
a/log4j-catalog/log4j-catalog-editor/src/main/java/org/apache/logging/log4j/catalog/config/WebMvcAppContext.java
+++
b/log4j-catalog/log4j-catalog-editor/src/main/java/org/apache/logging/log4j/catalog/config/WebMvcAppContext.java
@@ -152,7 +152,7 @@ public class WebMvcAppContext extends
WebMvcConfigurerAdapter implements Applica
return new MappingJackson2HttpMessageConverter(objectMapper());
}
- @Value("${gitUserName")
+ @Value("${gitUserName}")
private String gitUserName;
@Value("${gitPassword:#{null}}")