1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-26 13:34:49 +02:00

Use Matcher.find() instead of Matcher.match()

This commit is contained in:
Paul Schaub 2023-06-28 19:44:16 +02:00
parent 9d3a9893f2
commit 2555893b19
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -32,7 +32,7 @@ data class RegexSet(val regexStrings: Set<String>) {
for (regex in regexStrings) {
val matcher = Pattern.compile(regex).matcher(string)
if (matcher.matches()) {
if (matcher.find()) {
return true
}
}