Author: simonetripodi Date: Sun Aug 14 19:32:47 2011 New Revision: 1157607 URL: http://svn.apache.org/viewvc?rev=1157607&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/adapter/FullyBoundFunction.java Modified: commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/adapter/FullyBoundFunction.java URL: http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/adapter/FullyBoundFunction.java?rev=1157607&r1=1157606&r2=1157607&view=diff ============================================================================== --- commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/adapter/FullyBoundFunction.java (original) +++ commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/adapter/FullyBoundFunction.java Sun Aug 14 19:32:47 2011 @@ -53,6 +53,8 @@ public final class FullyBoundFunction<T> /** * Create a new FullyBoundFunction. + * @param <L> the left argument type. + * @param <R> the right argument type. * @param function the function to adapt * @param left the left side argument to use * @param right the right side argument to use