Skip to content

Commit 526972a

Browse files
authored
Remove redundant cast (#109)
1 parent 5838dc9 commit 526972a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/maven/plugins/deploy/DeployMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ private ArtifactDeployerRequest createDeployerRequest() {
298298
ArtifactDeployerRequest request = ArtifactDeployerRequest.builder()
299299
.session(session)
300300
.repository(getDeploymentRepository(session.isVersionSnapshot(project.getVersion())))
301-
.artifacts((Collection) deployables)
301+
.artifacts(deployables)
302302
.retryFailedDeploymentCount(Math.max(1, Math.min(10, getRetryFailedDeploymentCount())))
303303
.build();
304304

0 commit comments

Comments
 (0)