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 2011/02/24 13:02:35 UTC

svn commit: r1074121 - in /myfaces/tobago/trunk/tobago-core/src: main/java/org/apache/myfaces/tobago/layout/TextAlign.java test/java/org/apache/myfaces/tobago/layout/TextAlignUnitTest.java

Author: bommel
Date: Thu Feb 24 12:02:35 2011
New Revision: 1074121

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

Modified:
    myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/layout/TextAlign.java
    myfaces/tobago/trunk/tobago-core/src/test/java/org/apache/myfaces/tobago/layout/TextAlignUnitTest.java

Modified: myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/layout/TextAlign.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/layout/TextAlign.java?rev=1074121&r1=1074120&r2=1074121&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/layout/TextAlign.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/layout/TextAlign.java Thu Feb 24 12:02:35 2011
@@ -1,8 +1,5 @@
 package org.apache.myfaces.tobago.layout;
 
-import java.util.HashMap;
-import java.util.Map;
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -20,6 +17,11 @@ import java.util.Map;
  * limitations under the License.
  */
 
+
+import java.util.HashMap;
+import java.util.Map;
+
+
 public enum TextAlign {
 
   LEFT("left"),

Modified: myfaces/tobago/trunk/tobago-core/src/test/java/org/apache/myfaces/tobago/layout/TextAlignUnitTest.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/test/java/org/apache/myfaces/tobago/layout/TextAlignUnitTest.java?rev=1074121&r1=1074120&r2=1074121&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/test/java/org/apache/myfaces/tobago/layout/TextAlignUnitTest.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/test/java/org/apache/myfaces/tobago/layout/TextAlignUnitTest.java Thu Feb 24 12:02:35 2011
@@ -1,8 +1,5 @@
 package org.apache.myfaces.tobago.layout;
 
-import org.junit.Assert;
-import org.junit.Test;
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -20,6 +17,9 @@ import org.junit.Test;
  * limitations under the License.
  */
 
+import org.junit.Assert;
+import org.junit.Test;
+
 public class TextAlignUnitTest {
 
   @Test