You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2009/04/26 07:13:12 UTC

svn commit: r768648 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/model/Node.java

Author: bommel
Date: Sun Apr 26 05:13:12 2009
New Revision: 768648

URL: http://svn.apache.org/viewvc?rev=768648&view=rev
Log:
checkstyle

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/model/Node.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/model/Node.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/model/Node.java?rev=768648&r1=768647&r2=768648&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/model/Node.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/model/Node.java Sun Apr 26 05:13:12 2009
@@ -1,9 +1,5 @@
 package org.apache.myfaces.tobago.model;
 
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.List;
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -21,6 +17,11 @@
  * limitations under the License.
  */
 
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+
+
 public class Node {
 
   private List<Node> children;