Author: simonetripodi
Date: Thu Aug 11 18:55:42 2011
New Revision: 1156732
URL: http://svn.apache.org/viewvc?rev=1156732&view=rev
Log:
fixed checkstyle violations: Type Javadoc comment is missing an @param <L>, <R>
and <T>
Modified:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/BinaryFunction.java
Modified:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/BinaryFunction.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/BinaryFunction.java?rev=1156732&r1=1156731&r2=1156732&view=diff
==============================================================================
---
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/BinaryFunction.java
(original)
+++
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/BinaryFunction.java
Thu Aug 11 18:55:42 2011
@@ -17,11 +17,14 @@
package org.apache.commons.functor;
/**
- * A functor that takes two arguments and returns an <code>Object</code> value.
+ * A functor that takes two arguments and returns a value.
* <p>
* Implementors are encouraged but not required to make their functors
* {@link java.io.Serializable Serializable}.
* </p>
+ * @param <L> the left argument type.
+ * @param <R> the right argument type.
+ * @param <T> the returned value type.
* @since 1.0
* @version $Revision$ $Date$
* @author Rodney Waldhoff