diff options
author | Vikas Varma <vv8305@att.com> | 2020-01-22 16:50:34 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-01-22 16:50:34 +0000 |
commit | 29482785f9e18a1100fe0ea4695dfaf348e60aa6 (patch) | |
tree | ffc66acb95c1b3e37dbf34aed11014a42be42ff8 | |
parent | f5f2f2bfc5e5f180a2664b53d1c325484b677f39 (diff) | |
parent | a5dac192598e520becf89bbf998d7d1f13cb748b (diff) |
Merge "Application.java-Remove the 'PropertySources' wrapper from this annotation group"
-rw-r--r-- | cmso-service/src/main/java/org/onap/optf/cmso/ApplicationPropertiesFiles.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cmso-service/src/main/java/org/onap/optf/cmso/ApplicationPropertiesFiles.java b/cmso-service/src/main/java/org/onap/optf/cmso/ApplicationPropertiesFiles.java index 99fce31..a64aceb 100644 --- a/cmso-service/src/main/java/org/onap/optf/cmso/ApplicationPropertiesFiles.java +++ b/cmso-service/src/main/java/org/onap/optf/cmso/ApplicationPropertiesFiles.java @@ -1,6 +1,6 @@ /* * Copyright © 2018 AT&T Intellectual Property. - * Modifications Copyright © 2018 IBM. + * Modifications Copyright © 2019 IBM. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -37,8 +37,8 @@ import org.springframework.context.annotation.PropertySources; @Configuration -@PropertySources({@PropertySource("file:etc/config/cmso.properties"), - @PropertySource("file:etc/config/optimizer.properties"), - @PropertySource("file:etc/config/ticketmgt.properties"),}) +@PropertySource("file:etc/config/cmso.properties") +@PropertySource("file:etc/config/optimizer.properties") +@PropertySource("file:etc/config/ticketmgt.properties") public class ApplicationPropertiesFiles { } |