Author: simonetripodi
Date: Mon Aug 22 19:27:26 2011
New Revision: 1160384
URL: http://svn.apache.org/viewvc?rev=1160384&view=rev
Log:
fixed checkstyle violation: Missing a Javadoc comment.
Modified:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/Identity.java
Modified:
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/Identity.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/Identity.java?rev=1160384&r1=1160383&r2=1160384&view=diff
==============================================================================
---
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/Identity.java
(original)
+++
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/Identity.java
Mon Aug 22 19:27:26 2011
@@ -37,6 +37,9 @@ import org.apache.commons.functor.UnaryP
public final class Identity<T> implements UnaryFunction<T, T>,
UnaryPredicate<T>, Serializable {
// static attributes
// ------------------------------------------------------------------------
+ /**
+ * A generic {@code Identity<Object>} instance.
+ */
public static final Identity<Object> INSTANCE = new Identity<Object>();
/**