Author: simonetripodi
Date: Mon Aug 22 20:09:01 2011
New Revision: 1160411

URL: http://svn.apache.org/viewvc?rev=1160411&view=rev
Log:
fixed checkstyle violations: Expected @param tag for @param <L> and <R>

Modified:
    
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/LeftIdentity.java

Modified: 
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/LeftIdentity.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/LeftIdentity.java?rev=1160411&r1=1160410&r2=1160411&view=diff
==============================================================================
--- 
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/LeftIdentity.java
 (original)
+++ 
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/LeftIdentity.java
 Mon Aug 22 20:09:01 2011
@@ -56,8 +56,8 @@ public final class LeftIdentity {
 
     /**
      * Get a Left-identity BinaryFunction.
-     * @param <L>
-     * @param <R>
+     * @param <L> the left argument type.
+     * @param <R> the right argument type.
      * @return BinaryFunction<L, R, L>
      */
     public static <L, R> BinaryFunction<L, R, L> function() {
@@ -66,7 +66,7 @@ public final class LeftIdentity {
 
     /**
      * Get a left-identity BinaryPredicate.
-     * @param <R>
+     * @param <R> the right argument type.
      * @return BinaryPredicate<Boolean, R>
      */
     public static <R> BinaryPredicate<Boolean, R> predicate() {


Reply via email to