added a getter to IncludesArtifactFilter to enable interrogation

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@763378 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Gusakov 2009-04-08 20:29:17 +00:00
parent 9a4e614d86
commit 419248d61f
1 changed files with 5 additions and 0 deletions

View File

@ -55,4 +55,9 @@ public class IncludesArtifactFilter
}
return matched;
}
public List<String> getPatterns()
{
return patterns;
}
}