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

svn commit: r765261 - /myfaces/tobago/branches/tobago-1.0.x/example/demo/src/main/java/org/apache/myfaces/tobago/example/demo/TobagoDemoController.java

Author: lofwyr
Date: Wed Apr 15 16:24:07 2009
New Revision: 765261

URL: http://svn.apache.org/viewvc?rev=765261&view=rev
Log:
Code Style

Modified:
    myfaces/tobago/branches/tobago-1.0.x/example/demo/src/main/java/org/apache/myfaces/tobago/example/demo/TobagoDemoController.java

Modified: myfaces/tobago/branches/tobago-1.0.x/example/demo/src/main/java/org/apache/myfaces/tobago/example/demo/TobagoDemoController.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/example/demo/src/main/java/org/apache/myfaces/tobago/example/demo/TobagoDemoController.java?rev=765261&r1=765260&r2=765261&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/example/demo/src/main/java/org/apache/myfaces/tobago/example/demo/TobagoDemoController.java (original)
+++ myfaces/tobago/branches/tobago-1.0.x/example/demo/src/main/java/org/apache/myfaces/tobago/example/demo/TobagoDemoController.java Wed Apr 15 16:24:07 2009
@@ -261,11 +261,9 @@
     columns.add(ComponentUtil.createTextColumn(
         "#{overviewBundle.solarArrayPeriod}", "true", "right", "#{luminary.period}"));
 
-
     return columns;
   }
 
-
   public static SelectItem[] getSelectItems(String[] keys, String bundle) {
     FacesContext facesContext = FacesContext.getCurrentInstance();
     SelectItem[] items = new SelectItem[keys.length];
@@ -565,7 +563,6 @@
   private static final String SHOW_ALL_ORBITS = "Show all";
 
   public void filterOrbit(ActionEvent event) {
-//    FacesContext facesContext = FacesContext.getCurrentInstance();
     UISelectOne selectOne = (UISelectOne) event.getComponent().getFacet(FACET_ITEMS);
     if (filteredList == null) {
       filteredList = new ArrayList<SolarObject>();
@@ -583,7 +580,6 @@
         }
       }
     }
-
   }
 
   public SelectItem[] getOrbitItems() {
@@ -648,7 +644,4 @@
       return "Node name="+name+" id="+id;
     }
   }
-
-
-
 }