diff options
author | Jim Hahn <jrh3@att.com> | 2021-05-07 15:35:55 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2021-05-07 15:42:10 -0400 |
commit | c7d24b07377cb00ce4c0c531c6d3dff25e04dc12 (patch) | |
tree | a1c32b52d2d92321745824e6d4fe29fb441a5835 /utils/src/main | |
parent | 1d0aaaa5b31719c1718700bb0d1a99c413fd513c (diff) |
Change java.util.regex to re2j
Sonar complains about java.util.regex. Thought I used re2j when
creating all of the patterns, but apparently not. Fixed that oversight.
Issue-ID: POLICY-3284
Change-Id: Idbec112ab0d4c3b477ce357f8a556d95e4dea083
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'utils/src/main')
-rw-r--r-- | utils/src/main/java/org/onap/policy/common/utils/properties/PropertyObjectUtils.java | 2 | ||||
-rw-r--r-- | utils/src/main/java/org/onap/policy/common/utils/resources/ResourceUtils.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/utils/src/main/java/org/onap/policy/common/utils/properties/PropertyObjectUtils.java b/utils/src/main/java/org/onap/policy/common/utils/properties/PropertyObjectUtils.java index 07346927..1a08bb47 100644 --- a/utils/src/main/java/org/onap/policy/common/utils/properties/PropertyObjectUtils.java +++ b/utils/src/main/java/org/onap/policy/common/utils/properties/PropertyObjectUtils.java @@ -18,13 +18,13 @@ package org.onap.policy.common.utils.properties; +import com.google.re2j.Pattern; import java.util.ArrayList; import java.util.Iterator; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.Properties; -import java.util.regex.Pattern; import org.slf4j.Logger; import org.slf4j.LoggerFactory; diff --git a/utils/src/main/java/org/onap/policy/common/utils/resources/ResourceUtils.java b/utils/src/main/java/org/onap/policy/common/utils/resources/ResourceUtils.java index b648fccd..589c3098 100644 --- a/utils/src/main/java/org/onap/policy/common/utils/resources/ResourceUtils.java +++ b/utils/src/main/java/org/onap/policy/common/utils/resources/ResourceUtils.java @@ -22,6 +22,7 @@ package org.onap.policy.common.utils.resources; +import com.google.re2j.Pattern; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.IOException; @@ -33,7 +34,6 @@ import java.util.Set; import java.util.TreeSet; import java.util.jar.JarEntry; import java.util.jar.JarFile; -import java.util.regex.Pattern; import org.slf4j.Logger; import org.slf4j.LoggerFactory; |