Fix IDE warnings

Fix warnings shown in Eclipse
This commit is contained in:
Phillip Webb
2018-04-12 17:14:55 -07:00
parent 923fb58ffc
commit 593759f321
7 changed files with 14 additions and 3 deletions

View File

@@ -155,6 +155,8 @@ public abstract class AbstractInitializrIntegrationTests {
/**
* Return a {@link ProjectAssert} for the following archive content.
* @param content the source content
* @return a project assert
*/
protected ProjectAssert zipProjectAssert(byte[] content) {
return projectAssert(content, ArchiveType.ZIP);
@@ -162,6 +164,8 @@ public abstract class AbstractInitializrIntegrationTests {
/**
* Return a {@link ProjectAssert} for the following TGZ archive.
* @param content the source content
* @return a project assert
*/
protected ProjectAssert tgzProjectAssert(byte[] content) {
return projectAssert(content, ArchiveType.TGZ);