diff options
author | Tony Hansen <tony@att.com> | 2018-02-06 14:37:01 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-02-06 14:37:01 +0000 |
commit | 7bddc9648f65d7ad15068563b873d583e97aaea2 (patch) | |
tree | 76ec672e9db2b19c35946253eb2634cdee030f5c /src/main/java | |
parent | 866d2b46586f00abd3656726d08a4bebee7a5544 (diff) | |
parent | fc532cd87e2ddc8a877a142b8104168875c01c34 (diff) |
Merge "sonar Major issues"
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/io/swagger/api/impl/DcaeServiceTypesApiServiceImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/io/swagger/api/impl/DcaeServiceTypesApiServiceImpl.java b/src/main/java/io/swagger/api/impl/DcaeServiceTypesApiServiceImpl.java index b21b0e1..c3be670 100644 --- a/src/main/java/io/swagger/api/impl/DcaeServiceTypesApiServiceImpl.java +++ b/src/main/java/io/swagger/api/impl/DcaeServiceTypesApiServiceImpl.java @@ -163,7 +163,7 @@ public class DcaeServiceTypesApiServiceImpl extends DcaeServiceTypesApiService { query.bind("asdcServiceId", asdcServiceId); } - if (asdcResourceId != null && !"NONE".equals(asdcResourceId.toUpperCase(Locale.ENGLISH))) { + if (asdcResourceId != null && !"NONE".equalsIgnoreCase(asdcResourceId)) { query.bind("asdcResourceId", asdcResourceId); } |