Update SonarQube Code Smell
[cps.git] / cps-ri / src / main / java / org / onap / cps / spi / query / CpsPathQuery.java
index f48d165..b27301b 100644 (file)
@@ -63,7 +63,7 @@ public class CpsPathQuery {
     private static final Pattern DESCENDANT_ANYWHERE_PATTERN_WITH_MULTIPLE_LEAF_PATTERN =
         Pattern.compile(DESCENDANT_ANYWHERE_PATTERN + YANG_MULTIPLE_LEAF_VALUE_EQUALS_CONDITION);
 
-    private static final String INDIVIDUAL_LEAF_DETAIL_PATTERN = ("\\s{0,9}and\\s{0,9}");
+    private static final String INDIVIDUAL_LEAF_DETAIL_PATTERN = ("\\s{1,9}and\\s{1,9}");
 
     private static final Pattern LEAF_VALUE_PATTERN = Pattern.compile("@(\\S+?)=(.*)");
 
@@ -77,7 +77,7 @@ public class CpsPathQuery {
      */
     public static CpsPathQuery createFrom(final String cpsPathSource) {
         var cpsPath = cpsPathSource;
-        final CpsPathQuery cpsPathQuery = new CpsPathQuery();
+        final var cpsPathQuery = new CpsPathQuery();
         var matcher = ANCESTOR_AXIS_PATTERN.matcher(cpsPath);
         if (matcher.matches()) {
             cpsPath = matcher.group(1);