You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ki...@apache.org on 2013/11/01 13:24:41 UTC

svn commit: r1537909 - in /commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core: collection/IsElementOf.java composite/BaseBinaryPredicateList.java composite/CompositeBinaryPredicate.java composite/NullaryNot.java

Author: kinow
Date: Fri Nov  1 12:24:41 2013
New Revision: 1537909

URL: http://svn.apache.org/r1537909
Log:
FUNCTOR-29 fix checkstyle errors (tabs)

Modified:
    commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/collection/IsElementOf.java
    commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/composite/BaseBinaryPredicateList.java
    commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/composite/CompositeBinaryPredicate.java
    commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/composite/NullaryNot.java

Modified: commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/collection/IsElementOf.java
URL: http://svn.apache.org/viewvc/commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/collection/IsElementOf.java?rev=1537909&r1=1537908&r2=1537909&view=diff
==============================================================================
--- commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/collection/IsElementOf.java (original)
+++ commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/collection/IsElementOf.java Fri Nov  1 12:24:41 2013
@@ -38,7 +38,7 @@ public final class IsElementOf<L, R> imp
     // static members
     //---------------------------------------------------------------
 
-	/**
+    /**
      * A static {@link IsElementOf} instance reference.
      */
     private static final IsElementOf<Object, Object> INSTANCE = new IsElementOf<Object, Object>();

Modified: commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/composite/BaseBinaryPredicateList.java
URL: http://svn.apache.org/viewvc/commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/composite/BaseBinaryPredicateList.java?rev=1537909&r1=1537908&r2=1537909&view=diff
==============================================================================
--- commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/composite/BaseBinaryPredicateList.java (original)
+++ commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/composite/BaseBinaryPredicateList.java Fri Nov  1 12:24:41 2013
@@ -30,7 +30,7 @@ import org.apache.commons.functor.Binary
  */
 abstract class BaseBinaryPredicateList<L, R> implements BinaryPredicate<L, R> {
 
-	// attributes
+    // attributes
     // ------------------------------------------------------------------------
     /**
      * A list to maintain all the adapted predicates.

Modified: commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/composite/CompositeBinaryPredicate.java
URL: http://svn.apache.org/viewvc/commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/composite/CompositeBinaryPredicate.java?rev=1537909&r1=1537908&r2=1537909&view=diff
==============================================================================
--- commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/composite/CompositeBinaryPredicate.java (original)
+++ commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/composite/CompositeBinaryPredicate.java Fri Nov  1 12:24:41 2013
@@ -32,7 +32,7 @@ import org.apache.commons.lang3.Validate
  */
 public class CompositeBinaryPredicate<L, R> implements BinaryPredicate<L, R> {
 
-	/** Base hash integer used to shift hash. */
+    /** Base hash integer used to shift hash. */
     private static final int HASH_SHIFT = 4;
 
     /**

Modified: commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/composite/NullaryNot.java
URL: http://svn.apache.org/viewvc/commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/composite/NullaryNot.java?rev=1537909&r1=1537908&r2=1537909&view=diff
==============================================================================
--- commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/composite/NullaryNot.java (original)
+++ commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/composite/NullaryNot.java Fri Nov  1 12:24:41 2013
@@ -26,7 +26,7 @@ import org.apache.commons.lang3.Validate
  */
 public final class NullaryNot implements NullaryPredicate {
 
-	// attributes
+    // attributes
     // ------------------------------------------------------------------------
     /**
      * The adapted predicate has to be negated.