Skip to content

Commit

Permalink
Cleaned up indentation & spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Dudziak committed Feb 13, 2014
1 parent 4969679 commit 4ba0e5a
Show file tree
Hide file tree
Showing 5 changed files with 111 additions and 118 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
.idea
*.iml
*.ipr
*.iws
Expand Down
Expand Up @@ -72,7 +72,7 @@ public class ClasspathDescriptor
}

// TreeMap<String, File>
private Map classesWithElements = new TreeMap();
private Map classesWithElements = new TreeMap();

// TreeMap<String, File>
private Map resourcesWithElements = new TreeMap();
Expand Down Expand Up @@ -100,7 +100,8 @@ public void setIgnoredResources(final String [] ignoredResources) throws MojoExe
for (int i = 0 ; i < ignoredResources.length; i++) {
ignoredResourcesPatterns[i] = Pattern.compile(ignoredResources[i].toUpperCase());
}
} catch (PatternSyntaxException pse) {
}
catch (PatternSyntaxException pse) {
throw new MojoExecutionException("Error compiling resourceIgnore pattern: " + pse.getMessage());
}
}
Expand Down
Expand Up @@ -51,7 +51,7 @@ public String toString()

public boolean matches(Artifact artifact)
{
ArtifactVersion version = null;
ArtifactVersion version;

try {
if (artifact.getVersionRange() != null) {
Expand Down

0 comments on commit 4ba0e5a

Please sign in to comment.