diff options
author | Tony Hansen <tony@att.com> | 2018-02-06 14:39:57 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-02-06 14:39:57 +0000 |
commit | bfd9313685fb1cf14f54811bd9ca62cc3105d2c5 (patch) | |
tree | 86ef619fa16443db7d48f11111cc189972999c02 /src | |
parent | 24d1fcbeb598bedd92ca36fdbccb8896ac7b107c (diff) | |
parent | e0090478d66cca38a545c3625e08cd290ff93b3d (diff) |
Merge "Sonar Major fix"
Diffstat (limited to 'src')
-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 dcc67b4..fc6509a 100644 --- a/src/main/java/io/swagger/api/impl/DcaeServiceTypesApiServiceImpl.java +++ b/src/main/java/io/swagger/api/impl/DcaeServiceTypesApiServiceImpl.java @@ -120,7 +120,7 @@ public class DcaeServiceTypesApiServiceImpl extends DcaeServiceTypesApiService { } if (asdcResourceId != null) { - if ("NONE".equals(asdcResourceId.toUpperCase(Locale.ENGLISH))) { + if (asdcResourceId.equalsIgnoreCase("NONE")) { whereClauses.add("asdc_resource_id is null"); } else { whereClauses.add(":asdcResourceId = asdc_resource_id"); |