Author: simonetripodi
Date: Sat May 28 16:11:42 2011
New Revision: 1128697
URL: http://svn.apache.org/viewvc?rev=1128697&view=rev
Log:
fixed checkstyle violation: Line is longer than 120 characters.
Modified:
commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/StackAction.java
Modified:
commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/StackAction.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/StackAction.java?rev=1128697&r1=1128696&r2=1128697&view=diff
==============================================================================
---
commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/StackAction.java
(original)
+++
commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/StackAction.java
Sat May 28 16:11:42 2011
@@ -64,8 +64,8 @@ public interface StackAction
* @param stackName is the name of the stack from which the object has
been popped. Null is passed to indicate the
* default stack.
* @param o is the object that has just been popped.
- * @return the object to be returned to the called. Normally, parameter o
is returned but this method could return an
- * alternate object.
+ * @return the object to be returned to the called. Normally, parameter o
is returned but this method could return
+ * an alternate object.
*/
<T> T onPop( Digester d, String stackName, T o );