aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThugutla sailakshmi <tsaila10@in.ibm.com>2019-11-06 15:16:59 +0530
committerVikas Varma <vv8305@att.com>2020-01-22 15:43:03 +0000
commita5dac192598e520becf89bbf998d7d1f13cb748b (patch)
treec66116d828d1f63814d5d99cd16ea41ebb76fead
parentd033e72dd122bdbfb105ec5f2efc98349f164aba (diff)
Application.java-Remove the 'PropertySources' wrapper from this annotation group
Issue-ID: OPTFRA-578 Change-Id: I37bf9c3f678de5e5fc4bfbc1fb772069204c5776 Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
-rw-r--r--cmso-service/src/main/java/org/onap/optf/cmso/ApplicationPropertiesFiles.java8
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 {
}