Skip to content

Commit

Permalink
convention: Remove debug printing
Browse files Browse the repository at this point in the history
  • Loading branch information
zml2008 committed Feb 25, 2021
1 parent cfe4db2 commit 304efe4
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,9 @@ private void configureLicenseHeaders(final LicenseExtension licenses) {
}

private void configureSigning(final SigningExtension extension) {
this.project.getLogger().lifecycle("Configuring signing for {}", this.project.getDisplayName());
final String spongeSigningKey = (String) this.project.findProperty(ConventionConstants.ProjectProperties.SPONGE_SIGNING_KEY);
final String spongeSigningPassword = (String) this.project.findProperty(ConventionConstants.ProjectProperties.SPONGE_SIGNING_PASSWORD);
if (spongeSigningKey != null && spongeSigningPassword != null) {
this.project.getLogger().lifecycle("Signing key and password found for for {}", this.project.getDisplayName());
final File keyFile = this.project.file(spongeSigningKey);
if (keyFile.exists()) {
final StringBuilder contents = new StringBuilder();
Expand Down

0 comments on commit 304efe4

Please sign in to comment.