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 2007/11/01 09:22:49 UTC

svn commit: r590929 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/RelativeLayoutToken.java

Author: bommel
Date: Thu Nov  1 01:22:48 2007
New Revision: 590929

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

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/RelativeLayoutToken.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/RelativeLayoutToken.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/RelativeLayoutToken.java?rev=590929&r1=590928&r2=590929&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/RelativeLayoutToken.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/RelativeLayoutToken.java Thu Nov  1 01:22:48 2007
@@ -22,8 +22,8 @@
  * Time: 1:34:11 PM
  */
 public class RelativeLayoutToken extends LayoutToken {
-  public static String DEFAULT_TOKEN_STRING = "1*";
-  public static RelativeLayoutToken DEFAULT_INSTANCE = new RelativeLayoutToken(1);
+  public static final String DEFAULT_TOKEN_STRING = "1*";
+  public static final RelativeLayoutToken DEFAULT_INSTANCE = new RelativeLayoutToken(1);
   private int factor = 1;
 
   public RelativeLayoutToken(int factor) {