Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo committed Nov 24, 2024
1 parent c872222 commit b65ec20
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,9 @@ public static String getFormattedFileName(

String classifierString = "";

if (!removeClassifier && artifact.getClassifier() != null && !artifact.getClassifier().isEmpty()) {
if (!removeClassifier
&& artifact.getClassifier() != null
&& !artifact.getClassifier().isEmpty()) {
classifierString = "-" + artifact.getClassifier();
}
destFileName.append(artifact.getArtifactId()).append(versionString);
Expand Down

0 comments on commit b65ec20

Please sign in to comment.