Author: simonetripodi
Date: Tue Aug 23 11:08:02 2011
New Revision: 1160628
URL: http://svn.apache.org/viewvc?rev=1160628&view=rev
Log:
fixed checkstyle violation: Type Javadoc comment is missing an @param <T> tag.
Modified:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/FoldLeft.java
Modified:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/FoldLeft.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/FoldLeft.java?rev=1160628&r1=1160627&r2=1160628&view=diff
==============================================================================
---
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/FoldLeft.java
(original)
+++
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/FoldLeft.java
Tue Aug 23 11:08:02 2011
@@ -29,6 +29,7 @@ import org.apache.commons.functor.genera
* then uses the result of that evaluation as the next left-side argument,
until the {@link Generator}'s
* elements have been expended.
*
+ * @param <T> the returned evaluation type.
* @version $Revision$ $Date$
*/
public class FoldLeft<T> implements UnaryFunction<Generator<T>, T>,
BinaryFunction<Generator<T>, T, T>, Serializable {