Skip to content

Commit

Permalink
maven: Avoid incorrect use of variable
Browse files Browse the repository at this point in the history
Signed-off-by: BJ Hargrave <bj@hargrave.dev>
  • Loading branch information
bjhargrave committed Nov 11, 2022
1 parent 05c321d commit 06d6243
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -666,7 +666,7 @@ private File getArtifactFile() {
private String getExtension(String type) {
ArtifactHandler artifactHandler = artifactHandlerManager.getArtifactHandler(type);
if (artifactHandler != null) {
type = artifactHandler.getExtension();
return artifactHandler.getExtension();
}
return type;
}
Expand Down

0 comments on commit 06d6243

Please sign in to comment.