Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MSHARED-1077] Bugfix for classifier in pattern #26

Merged
merged 8 commits into from Jun 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -53,7 +53,7 @@ public PatternExcludesArtifactFilter( Collection<String> patterns, boolean actTr
super( patterns, actTransitively );
}

/** {@inheritDoc} */
@Override
public boolean include( Artifact artifact )
{
boolean shouldInclude = !patternMatches( artifact );
Expand All @@ -66,21 +66,13 @@ public boolean include( Artifact artifact )
return shouldInclude;
}

/**
* {@inheritDoc}
*
* @return a {@link java.lang.String} object.
*/
@Override
protected String getFilterDescription()
{
return "artifact exclusion filter";
}

/**
* {@inheritDoc}
*
* @return a {@link java.lang.String} object.
*/
@Override
public String toString()
{
return "Excludes filter:" + getPatternsAsString();
Expand Down