aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSnigdha Sucharita Patra <sp00503415@techmahindra.com>2018-02-06 10:44:15 +0530
committerSnigdha Sucharita Patra <sp00503415@techmahindra.com>2018-02-06 10:44:15 +0530
commit96c382cf5eb34ec49e9629ced710239b7467d944 (patch)
treef1e12f980704d63b0bbe27846515133d36eabbb3
parentfc532cd87e2ddc8a877a142b8104168875c01c34 (diff)
sonar Major issues
Replace these toUpperCase()/toLowerCase() and equals() calls with a single equalsIgnoreCase() call Sonar Link: https://sonar.onap.org/component_issues?id=org.onap.dcaegen2.platform%3Ainventory-api#resolved=false|severities=MAJOR|assignees=Snigdha503415 Location: src/main/java/io/swagger/api/impl/DcaeServicesApiServiceImpl.java Line No-93 Change-Id: I5d7ec72053255053ebf2c0a434cb8461a703f299 Issue-ID: DCAEGEN2-306 Signed-off-by: Snigdha Sucharita Patra <sp00503415@techmahindra.com>
-rw-r--r--src/main/java/io/swagger/api/impl/DcaeServicesApiServiceImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/io/swagger/api/impl/DcaeServicesApiServiceImpl.java b/src/main/java/io/swagger/api/impl/DcaeServicesApiServiceImpl.java
index bc1888f..90c2435 100644
--- a/src/main/java/io/swagger/api/impl/DcaeServicesApiServiceImpl.java
+++ b/src/main/java/io/swagger/api/impl/DcaeServicesApiServiceImpl.java
@@ -90,7 +90,7 @@ public class DcaeServicesApiServiceImpl extends DcaeServicesApiService {
// TODO: When putting together the components fail. Should this be a 500 case?
// For now, this is just logged as a warning.
- if (COMPONENT_SOURCE_DCAE_CONTROLLER.equals(sco.getComponentSource().toUpperCase(Locale.ENGLISH))) {
+ if (COMPONENT_SOURCE_DCAE_CONTROLLER.equalsIgnoreCase(sco.getComponentSource())) {
if (this.dcaeControllerClient != null) {
try {
DCAEControllerClient.ServiceInstance serviceInstance