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/06/04 12:26:51 UTC

[commons-lang] branch master updated: 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-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new 5509c42  Remove trailing white spaces on all lines.
5509c42 is described below

commit 5509c425b4609582be11f67d7d43db15119923f0
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Jun 4 08:26:47 2019 -0400

    Remove trailing white spaces on all lines.
---
 src/main/java/org/apache/commons/lang3/Charsets.java                 | 2 +-
 src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java | 4 ++--
 src/test/java/org/apache/commons/lang3/StringUtilsTest.java          | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/Charsets.java b/src/main/java/org/apache/commons/lang3/Charsets.java
index 9aff0d5..c80bb90 100644
--- a/src/main/java/org/apache/commons/lang3/Charsets.java
+++ b/src/main/java/org/apache/commons/lang3/Charsets.java
@@ -29,7 +29,7 @@ import java.nio.charset.UnsupportedCharsetException;
  * Package private since Apache Commons IO already provides a Charsets because {@link Charset} is in
  * {@code java.nio.charset}.
  * </p>
- * 
+ *
  * @since 3.10
  */
 class Charsets {
diff --git a/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java b/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java
index 651b77e..8075b9c 100644
--- a/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java
+++ b/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java
@@ -28,8 +28,8 @@ import org.apache.commons.lang3.Validate;
  * <p> Utility reflection methods focused on constructors, modeled after
  * {@link MethodUtils}. </p>
  *
- * <h2>Known Limitations</h2> 
- * <h3>Accessing Public Constructors In A Default Access Superclass</h3> 
+ * <h2>Known Limitations</h2>
+ * <h3>Accessing Public Constructors In A Default Access Superclass</h3>
  * <p>There is an issue when invoking {@code public} constructors
  * contained in a default access superclass. Reflection correctly locates these
  * constructors and assigns them as {@code public}. However, an
diff --git a/src/test/java/org/apache/commons/lang3/StringUtilsTest.java b/src/test/java/org/apache/commons/lang3/StringUtilsTest.java
index e9ce8fb..02046aa 100644
--- a/src/test/java/org/apache/commons/lang3/StringUtilsTest.java
+++ b/src/test/java/org/apache/commons/lang3/StringUtilsTest.java
@@ -3146,7 +3146,7 @@ public class StringUtilsTest {
         assertEquals("'\"abcd\"'", StringUtils.wrap("\"abcd\"", "'"));
         assertEquals("\"'abcd'\"", StringUtils.wrap("'abcd'", "\""));
     }
-    
+
     @Test
     public void testWrapIfMissing_StringChar() {
         assertNull(StringUtils.wrapIfMissing(null, CharUtils.NUL));