This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-release-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new 9d0ef04 Fix compiler warnings.
9d0ef04 is described below
commit 9d0ef04f3ce00afee509328772ec1f39e62da759
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Apr 7 10:19:38 2019 -0400
Fix compiler warnings.
---
.../release/plugin/mojos/CommonsDistributionDetachmentMojoTest.java | 2 ++
.../release/plugin/mojos/CommonsDistributionStagingMojoTest.java | 3 +++
.../commons/release/plugin/mojos/CommonsSiteCompressionMojoTest.java | 2 ++
.../commons/release/plugin/mojos/CommonsStagingCleanupMojoTest.java | 2 ++
4 files changed, 9 insertions(+)
diff --git
a/src/test/java/org/apache/commons/release/plugin/mojos/CommonsDistributionDetachmentMojoTest.java
b/src/test/java/org/apache/commons/release/plugin/mojos/CommonsDistributionDetachmentMojoTest.java
index 22c0517..8110dc5 100755
---
a/src/test/java/org/apache/commons/release/plugin/mojos/CommonsDistributionDetachmentMojoTest.java
+++
b/src/test/java/org/apache/commons/release/plugin/mojos/CommonsDistributionDetachmentMojoTest.java
@@ -41,10 +41,12 @@ public class CommonsDistributionDetachmentMojoTest {
public MojoRule rule = new MojoRule() {
@Override
protected void before() throws Throwable {
+ // noop
}
@Override
protected void after() {
+ // noop
}
};
diff --git
a/src/test/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojoTest.java
b/src/test/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojoTest.java
index 5ace108..7f42ad8 100755
---
a/src/test/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojoTest.java
+++
b/src/test/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojoTest.java
@@ -42,10 +42,12 @@ public class CommonsDistributionStagingMojoTest {
public MojoRule rule = new MojoRule() {
@Override
protected void before() throws Throwable {
+ // noop
}
@Override
protected void after() {
+ // noop
}
};
@@ -125,6 +127,7 @@ public class CommonsDistributionStagingMojoTest {
assertTrue(binTarSha512.exists());
assertTrue(binZip.exists());
assertTrue(binZipASC.exists());
+ assertTrue(binZipSha512.exists());
assertTrue(sourcesReadmeHtml.exists());
assertTrue(sourceHeaderHtml.exists());
assertTrue(srcTar.exists());
diff --git
a/src/test/java/org/apache/commons/release/plugin/mojos/CommonsSiteCompressionMojoTest.java
b/src/test/java/org/apache/commons/release/plugin/mojos/CommonsSiteCompressionMojoTest.java
index 3fed59a..a8d42cb 100755
---
a/src/test/java/org/apache/commons/release/plugin/mojos/CommonsSiteCompressionMojoTest.java
+++
b/src/test/java/org/apache/commons/release/plugin/mojos/CommonsSiteCompressionMojoTest.java
@@ -44,10 +44,12 @@ public class CommonsSiteCompressionMojoTest {
public MojoRule rule = new MojoRule() {
@Override
protected void before() throws Throwable {
+ // noop
}
@Override
protected void after() {
+ // noop
}
};
diff --git
a/src/test/java/org/apache/commons/release/plugin/mojos/CommonsStagingCleanupMojoTest.java
b/src/test/java/org/apache/commons/release/plugin/mojos/CommonsStagingCleanupMojoTest.java
index 1bcfb9e..128db4b 100755
---
a/src/test/java/org/apache/commons/release/plugin/mojos/CommonsStagingCleanupMojoTest.java
+++
b/src/test/java/org/apache/commons/release/plugin/mojos/CommonsStagingCleanupMojoTest.java
@@ -41,10 +41,12 @@ public class CommonsStagingCleanupMojoTest {
public MojoRule rule = new MojoRule() {
@Override
protected void before() throws Throwable {
+ // noop
}
@Override
protected void after() {
+ // noop
}
};