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 2019/12/18 20:58:08 UTC

[commons-configuration] 01/02: Remove trailing white spaces on all lines.

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

commit 76849c9132dfdb0d0e9d63e9805fc77aca628ad1
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Dec 18 15:28:52 2019 -0500

    Remove trailing white spaces on all lines.
---
 .../org/apache/commons/configuration2/TestXMLConfiguration.java     | 2 +-
 .../commons/configuration2/convert/TestPropertyConverter.java       | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/test/java/org/apache/commons/configuration2/TestXMLConfiguration.java b/src/test/java/org/apache/commons/configuration2/TestXMLConfiguration.java
index aabb8b4..ea8ffad 100644
--- a/src/test/java/org/apache/commons/configuration2/TestXMLConfiguration.java
+++ b/src/test/java/org/apache/commons/configuration2/TestXMLConfiguration.java
@@ -1775,7 +1775,7 @@ public class TestXMLConfiguration
         conf.setValidating(true);
         load(conf, "testValidateInvalid.xml");
     }
-    
+
     @Test
     public void testWrite() throws Exception
     {
diff --git a/src/test/java/org/apache/commons/configuration2/convert/TestPropertyConverter.java b/src/test/java/org/apache/commons/configuration2/convert/TestPropertyConverter.java
index 51104af..6fa69ff 100644
--- a/src/test/java/org/apache/commons/configuration2/convert/TestPropertyConverter.java
+++ b/src/test/java/org/apache/commons/configuration2/convert/TestPropertyConverter.java
@@ -51,7 +51,7 @@ public class TestPropertyConverter
         // The result is 0.1000000000000000055511151231257827021181583404541015625.
         // See Sonar rule: https://rules.sonarsource.com/java/type/Bug/RSPEC-2111
         final double d = 0.1;
-        assertEquals("Incorrect BigDecimal value", new BigDecimal(Double.toString(d)), 
+        assertEquals("Incorrect BigDecimal value", new BigDecimal(Double.toString(d)),
             PropertyConverter.toBigDecimal(d));
     }
 
@@ -65,7 +65,7 @@ public class TestPropertyConverter
         // The result is 0.1000000000000000055511151231257827021181583404541015625.
         // See Sonar rule: https://rules.sonarsource.com/java/type/Bug/RSPEC-2111
         final double d = 0.1;
-        assertEquals("Incorrect BigDecimal value", new BigDecimal(d), 
+        assertEquals("Incorrect BigDecimal value", new BigDecimal(d),
             PropertyConverter.toBigDecimal(d));
     }
 
@@ -335,5 +335,5 @@ public class TestPropertyConverter
                         new DefaultConversionHandler());
         assertEquals("Wrong resulting string", "42", result);
     }
-    
+
 }