You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2019/02/06 23:31:44 UTC

[activemq-artemis] branch master updated: ARTEMIS-1058 Fixing checkstyle

This is an automated email from the ASF dual-hosted git repository.

clebertsuconic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/master by this push:
     new 9c06d4b  ARTEMIS-1058 Fixing checkstyle
9c06d4b is described below

commit 9c06d4b8b6c0a62283139fa6d98f9ce6aa55de4e
Author: Clebert Suconic <cl...@apache.org>
AuthorDate: Wed Feb 6 18:29:53 2019 -0500

    ARTEMIS-1058 Fixing checkstyle
---
 .../src/test/java/org/apache/activemq/cli/test/WebServerCLITest.java   | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/artemis-web/src/test/java/org/apache/activemq/cli/test/WebServerCLITest.java b/artemis-web/src/test/java/org/apache/activemq/cli/test/WebServerCLITest.java
index 6665e80..9044117 100644
--- a/artemis-web/src/test/java/org/apache/activemq/cli/test/WebServerCLITest.java
+++ b/artemis-web/src/test/java/org/apache/activemq/cli/test/WebServerCLITest.java
@@ -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");