harrisric commented on code in PR #367: URL: https://github.com/apache/maven-enforcer/pull/367#discussion_r2132685407
########## enforcer-rules/src/main/java/org/apache/maven/enforcer/rules/utils/ArtifactMatcher.java: ########## @@ -44,9 +44,10 @@ public final class ArtifactMatcher { * @author I don't know */ public static class Pattern { - private String pattern; + private final String pattern; - private String[] parts; + private final String[] parts; + private final java.util.regex.Pattern[] partsRegex; Review Comment: The inner class this is part of is called `Pattern` so thus was to distinguish between them -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org