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/09/05 15:49:48 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 327cf60  Remove trailing white spaces on all lines.
327cf60 is described below

commit 327cf6047d472aff46b457262e83155ac6d84e7e
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Sep 5 11:49:43 2019 -0400

    Remove trailing white spaces on all lines.
---
 src/main/java/org/apache/commons/lang3/Functions.java | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/Functions.java b/src/main/java/org/apache/commons/lang3/Functions.java
index 3a9dbf3..1135c94 100644
--- a/src/main/java/org/apache/commons/lang3/Functions.java
+++ b/src/main/java/org/apache/commons/lang3/Functions.java
@@ -54,7 +54,7 @@ import java.util.function.Supplier;
  * Lambda expressions is met better than the second version.
  */
 public class Functions {
-    
+
     @FunctionalInterface
     public interface FailableRunnable<T extends Throwable> {
         /**
@@ -63,7 +63,7 @@ public class Functions {
          */
         void run() throws T;
     }
-    
+
     @FunctionalInterface
     public interface FailableCallable<O, T extends Throwable> {
         /**
@@ -73,7 +73,7 @@ public class Functions {
          */
         O call() throws T;
     }
-    
+
     @FunctionalInterface
     public interface FailableConsumer<O, T extends Throwable> {
         /**
@@ -83,7 +83,7 @@ public class Functions {
          */
         void accept(O pObject) throws T;
     }
-    
+
     @FunctionalInterface
     public interface FailableBiConsumer<O1, O2, T extends Throwable> {
         /**
@@ -94,7 +94,7 @@ public class Functions {
          */
         void accept(O1 pObject1, O2 pObject2) throws T;
     }
-    
+
     @FunctionalInterface
     public interface FailableFunction<I, O, T extends Throwable> {
         /**
@@ -105,7 +105,7 @@ public class Functions {
          */
         O apply(I pInput) throws T;
     }
-    
+
     @FunctionalInterface
     public interface FailableBiFunction<I1, I2, O, T extends Throwable> {
         /**
@@ -117,7 +117,7 @@ public class Functions {
          */
         O apply(I1 pInput1, I2 pInput2) throws T;
     }
-    
+
     @FunctionalInterface
     public interface FailablePredicate<O, T extends Throwable> {
         /**
@@ -128,7 +128,7 @@ public class Functions {
          */
         boolean test(O pObject) throws T;
     }
-    
+
     @FunctionalInterface
     public interface FailableBiPredicate<O1, O2, T extends Throwable> {
         /**
@@ -140,7 +140,7 @@ public class Functions {
          */
         boolean test(O1 pObject1, O2 pObject2) throws T;
     }
-    
+
     @FunctionalInterface
     public interface FailableSupplier<O, T extends Throwable> {
         /**