You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/06/27 20:24:52 UTC

svn commit: r1140256 - /commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/AbstractMethodRule.java

Author: simonetripodi
Date: Mon Jun 27 18:24:52 2011
New Revision: 1140256

URL: http://svn.apache.org/viewvc?rev=1140256&view=rev
Log:
relocated license header

Modified:
    commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/AbstractMethodRule.java

Modified: commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/AbstractMethodRule.java
URL: http://svn.apache.org/viewvc/commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/AbstractMethodRule.java?rev=1140256&r1=1140255&r2=1140256&view=diff
==============================================================================
--- commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/AbstractMethodRule.java (original)
+++ commons/proper/digester/trunk/src/main/java/org/apache/commons/digester3/AbstractMethodRule.java Mon Jun 27 18:24:52 2011
@@ -1,13 +1,5 @@
 package org.apache.commons.digester3;
 
-import static java.lang.String.format;
-
-import org.apache.commons.beanutils.MethodUtils;
-import org.apache.commons.digester3.annotations.rules.SetNext;
-import org.apache.commons.digester3.annotations.rules.SetRoot;
-import org.apache.commons.digester3.annotations.rules.SetTop;
-import org.xml.sax.Attributes;
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
@@ -27,6 +19,14 @@ import org.xml.sax.Attributes;
  * under the License.
  */
 
+import static java.lang.String.format;
+
+import org.apache.commons.beanutils.MethodUtils;
+import org.apache.commons.digester3.annotations.rules.SetNext;
+import org.apache.commons.digester3.annotations.rules.SetRoot;
+import org.apache.commons.digester3.annotations.rules.SetTop;
+import org.xml.sax.Attributes;
+
 /**
  * Abstarct implementation for {@link SetNext}, {@link SetRoot} and {@link SetTop} rules.
  *