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 2018/09/28 15:24:48 UTC

[text] Remove trailing white spaces.

Repository: commons-text
Updated Branches:
  refs/heads/master 5d01c5966 -> 4baa89f03


Remove trailing white spaces.

Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/4baa89f0
Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/4baa89f0
Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/4baa89f0

Branch: refs/heads/master
Commit: 4baa89f0348b66323ddea8b30ca4886bc3a82c87
Parents: 5d01c59
Author: Gary Gregory <gg...@rocketsoftware.com>
Authored: Fri Sep 28 09:24:46 2018 -0600
Committer: Gary Gregory <gg...@rocketsoftware.com>
Committed: Fri Sep 28 09:24:46 2018 -0600

----------------------------------------------------------------------
 src/main/java/org/apache/commons/text/StringSubstitutor.java   | 6 +++---
 .../apache/commons/text/lookup/JavaPlatformStringLookup.java   | 2 +-
 .../apache/commons/text/lookup/ResourceBundleStringLookup.java | 2 +-
 .../org/apache/commons/text/lookup/StringLookupFactory.java    | 6 +++---
 4 files changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/4baa89f0/src/main/java/org/apache/commons/text/StringSubstitutor.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/text/StringSubstitutor.java b/src/main/java/org/apache/commons/text/StringSubstitutor.java
index 8d98ecf..58f6e82 100644
--- a/src/main/java/org/apache/commons/text/StringSubstitutor.java
+++ b/src/main/java/org/apache/commons/text/StringSubstitutor.java
@@ -136,21 +136,21 @@ public class StringSubstitutor {
 
     /**
      * The default variable default separator.
-     * 
+     *
      * @since 1.5.
      */
     public static final String DEFAULT_VAR_DEFAULT = ":-";
 
     /**
      * The default variable end separator.
-     * 
+     *
      * @since 1.5.
      */
     public static final String DEFAULT_VAR_END = "}";
 
     /**
      * The default variable start separator.
-     * 
+     *
      * @since 1.5.
      */
     public static final String DEFAULT_VAR_START = "${";

http://git-wip-us.apache.org/repos/asf/commons-text/blob/4baa89f0/src/main/java/org/apache/commons/text/lookup/JavaPlatformStringLookup.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/text/lookup/JavaPlatformStringLookup.java b/src/main/java/org/apache/commons/text/lookup/JavaPlatformStringLookup.java
index 4155a24..383c10a 100644
--- a/src/main/java/org/apache/commons/text/lookup/JavaPlatformStringLookup.java
+++ b/src/main/java/org/apache/commons/text/lookup/JavaPlatformStringLookup.java
@@ -33,7 +33,7 @@ import org.apache.commons.lang3.StringUtils;
  * <li><b>hardware</b>: "processors: 4, architecture: amd64-64, instruction sets: amd64"</li>
  * <li><b>locale</b>: "default locale: en_US, platform encoding: iso-8859-1"</li>
  * </ul>
- * 
+ *
  * @since 1.3
  */
 final class JavaPlatformStringLookup extends AbstractStringLookup {

http://git-wip-us.apache.org/repos/asf/commons-text/blob/4baa89f0/src/main/java/org/apache/commons/text/lookup/ResourceBundleStringLookup.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/text/lookup/ResourceBundleStringLookup.java b/src/main/java/org/apache/commons/text/lookup/ResourceBundleStringLookup.java
index 7dd5c6b..8a14c1b 100644
--- a/src/main/java/org/apache/commons/text/lookup/ResourceBundleStringLookup.java
+++ b/src/main/java/org/apache/commons/text/lookup/ResourceBundleStringLookup.java
@@ -49,7 +49,7 @@ final class ResourceBundleStringLookup extends AbstractStringLookup {
 
     /**
      * Constructs an instance that only works for the given bundle.
-     * 
+     *
      * @since 1.5
      */
     ResourceBundleStringLookup(final String bundleName) {

http://git-wip-us.apache.org/repos/asf/commons-text/blob/4baa89f0/src/main/java/org/apache/commons/text/lookup/StringLookupFactory.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/text/lookup/StringLookupFactory.java b/src/main/java/org/apache/commons/text/lookup/StringLookupFactory.java
index 86221e6..2b6f856 100644
--- a/src/main/java/org/apache/commons/text/lookup/StringLookupFactory.java
+++ b/src/main/java/org/apache/commons/text/lookup/StringLookupFactory.java
@@ -33,7 +33,7 @@ public final class StringLookupFactory {
 
     /**
      * Clears any static resources.
-     * 
+     *
      * @since 1.5
      */
     public static void clear() {
@@ -289,7 +289,7 @@ public final class StringLookupFactory {
      * <li><b>hardware</b>: "processors: 4, architecture: amd64-64, instruction sets: amd64"</li>
      * <li><b>locale</b>: "default locale: en_US, platform encoding: iso-8859-1"</li>
      * </ul>
-     * 
+     *
      * @return the JavaPlatformStringLookup singleton instance.
      */
     public StringLookup javaPlatformStringLookup() {
@@ -371,7 +371,7 @@ public final class StringLookupFactory {
      * <p>
      * For example: "MyKey".
      * </p>
-     * 
+     *
      * @param bundleName
      *            Only lookup in this bundle.
      * @return a ResourceBundleStringLookup instance for the given bundle name.