]> source.dussan.org Git - gwtquery.git/commitdiff
Fix null exceptions
authorManolo Carrasco <manolo@apache.org>
Mon, 10 Sep 2012 09:14:29 +0000 (09:14 +0000)
committerManolo Carrasco <manolo@apache.org>
Mon, 10 Sep 2012 09:14:29 +0000 (09:14 +0000)
gwtquery-core/src/main/java/com/google/gwt/query/client/Function.java

index ad6e1a75ea1699cbca40322b5412b97a2ecaff37..d99021d975e5a1cbcb0f345354b95acbcc4b848a 100644 (file)
@@ -65,7 +65,7 @@ public abstract class Function {
   }
 
   public Object getDataObject(int idx) {
-    return data.length > idx ? data[idx] : null;
+    return data != null && data.length > idx ? data[idx] : null;
   }
   
   public Properties getDataProperties() {
@@ -273,7 +273,7 @@ public abstract class Function {
    * They are intentionally final to avoid override them 
    */
   public final void fe() {
-    fe((Object)null);
+    fe(data);
   }
 
   /**