ARTEMIS-1058 Fixing checkstyle

This commit is contained in:
Clebert Suconic 2019-02-06 18:29:53 -05:00
parent fe8c4a3bb5
commit 9c06d4b8b6
1 changed files with 0 additions and 3 deletions

View File

@ -18,7 +18,6 @@ package org.apache.activemq.cli.test;
import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.io.PrintStream;
import java.util.ArrayList;
import java.util.List;
@ -113,7 +112,6 @@ public class WebServerCLITest {
@Test
public void testCleanupFolder() throws Exception {
System.out.println("temporary folder = " + temporaryFolder.getRoot());
List<File> fileList = new ArrayList<>();
for (int i = 0; i < 10; i++) {
File directory = temporaryFolder.newFolder("test & output " + i);
@ -128,7 +126,6 @@ public class WebServerCLITest {
}
private void fillup(File file) throws Exception {
System.out.println("Creating file " + file);
file.mkdirs();
for (int i = 0; i < 10; i++) {
File fi = new File(file, "file" + i + ".txt");