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/12/06 23:24:51 UTC

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

Author: bommel
Date: Thu Dec  6 14:24:50 2007
New Revision: 601879

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

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

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPage.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPage.java?rev=601879&r1=601878&r2=601879&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPage.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPage.java Thu Dec  6 14:24:50 2007
@@ -92,7 +92,7 @@
 
   private String applicationIcon;
 
-  @SuppressWarnings({"unchecked"})
+  @SuppressWarnings("unchecked")
   public UIPage() {
     scriptFiles = SetUniqueList.decorate(new ArrayList());
     scriptBlocks = new ListOrderedSet();
@@ -254,7 +254,7 @@
     decodePageState(facesContext, state);
   }
 
-  @SuppressWarnings({"unchecked"})
+  @SuppressWarnings("unchecked")
   private void decodePageState(FacesContext facesContext, PageState pageState) {
     String name;
     String value = null;
@@ -327,7 +327,7 @@
     this.defaultActionId = defaultActionId;
   }
 
-  @SuppressWarnings({"unchecked"})
+  @SuppressWarnings("unchecked")
   public List<String> getScriptFiles() {
     return scriptFiles;
   }