You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/09/03 15:42:22 UTC

[commons-io] branch master updated: Remove dead comments.

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-io.git


The following commit(s) were added to refs/heads/master by this push:
     new d531c3b  Remove dead comments.
d531c3b is described below

commit d531c3bdef5911cb79d3d652b7fe31493e7ad47e
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Sep 3 11:42:14 2020 -0400

    Remove dead comments.
---
 .../org/apache/commons/io/output/FileWriterWithEncodingTest.java     | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/src/test/java/org/apache/commons/io/output/FileWriterWithEncodingTest.java b/src/test/java/org/apache/commons/io/output/FileWriterWithEncodingTest.java
index c121d00..84f1725 100644
--- a/src/test/java/org/apache/commons/io/output/FileWriterWithEncodingTest.java
+++ b/src/test/java/org/apache/commons/io/output/FileWriterWithEncodingTest.java
@@ -66,7 +66,6 @@ public class FileWriterWithEncodingTest {
         textContent = new String(arr);
     }
 
-    //-----------------------------------------------------------------------
     @Test
     public void sameEncoding_string_constructor() throws Exception {
         successfulRun(new FileWriterWithEncoding(file2, defaultEncoding));
@@ -168,7 +167,6 @@ public class FileWriterWithEncodingTest {
         fw2.flush();
     }
 
-    //-----------------------------------------------------------------------
     @Test
     public void constructor_File_encoding_badEncoding() {
         assertThrows(IOException.class, () -> {
@@ -179,7 +177,6 @@ public class FileWriterWithEncodingTest {
         assertFalse(file1.exists());
     }
 
-    //-----------------------------------------------------------------------
     @Test
     public void constructor_File_directory() {
         assertThrows(IOException.class, () -> {
@@ -190,7 +187,6 @@ public class FileWriterWithEncodingTest {
         assertFalse(file1.exists());
     }
 
-    //-----------------------------------------------------------------------
     @Test
     public void constructor_File_nullFile() {
         assertThrows(NullPointerException.class, () -> {
@@ -201,7 +197,6 @@ public class FileWriterWithEncodingTest {
         assertFalse(file1.exists());
     }
 
-    //-----------------------------------------------------------------------
     @Test
     public void constructor_fileName_nullFile() {
         assertThrows(NullPointerException.class, () -> {