Skip to content

Commit bc1df47

Browse files
committed
Remove unnecessary semi colons
1 parent 8d7de81 commit bc1df47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/groovy/org/codehaus/mojo/spotbugs/SpotBugsPluginsTrait.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ trait SpotBugsPluginsTrait {
9898
log.debug("pomArtifact is ${pomArtifact} ****** groupId is ${pomArtifact['groupId']} ****** artifactId is ${pomArtifact['artifactId']} ****** version is ${pomArtifact['version']} ****** type is ${pomArtifact['type']} ****** classfier is ${pomArtifact['classifier']}")
9999
}
100100

101-
ArtifactRequest request = new ArtifactRequest(RepositoryUtils.toArtifact(pomArtifact), session.getCurrentProject().getRemoteProjectRepositories(), null);
102-
ArtifactResult result = this.repositorySystem.resolveArtifact(session.getRepositorySession(), request);
101+
ArtifactRequest request = new ArtifactRequest(RepositoryUtils.toArtifact(pomArtifact), session.getCurrentProject().getRemoteProjectRepositories(), null)
102+
ArtifactResult result = this.repositorySystem.resolveArtifact(session.getRepositorySession(), request)
103103

104104
pomArtifact.setFile(result.getArtifact().getFile())
105105

0 commit comments

Comments
 (0)