diff base/src/java/util/AbstractSet.d @ 94:1d37a7813832

First Databinding Snippet (004) builds
author Frank Benoit <benoit@tionex.de>
date Sun, 19 Apr 2009 17:37:36 +0200
parents fcf926c91ca4
children 5d5bd660917f
line wrap: on
line diff
--- a/base/src/java/util/AbstractSet.d	Sun Apr 19 13:49:53 2009 +0200
+++ b/base/src/java/util/AbstractSet.d	Sun Apr 19 17:37:36 2009 +0200
@@ -27,17 +27,17 @@
 
 
     public bool     isEmpty(){ return super.isEmpty(); }
-    public Iterator iterator(){ return super.iterator(); }
+    //public Iterator iterator(){ return super.iterator(); }
     public bool     remove(Object o){ return super.remove(o); }
     public bool     remove(String o){ return super.remove(o); }
     public bool     removeAll(Collection c){ return super.removeAll(c); }
     public bool     retainAll(Collection c){ return super.retainAll(c); }
-    public int      size(){ return super.size(); }
+    //public int      size(){ return super.size(); }
     public Object[] toArray(){ return super.toArray(); }
     public Object[] toArray(Object[] a){ return super.toArray(a); }
     public String   toString(){ return super.toString(); }
 
     // only for D
-    public int opApply (int delegate(ref Object value) dg){ return super.opApply(dg); }
+    //public int opApply (int delegate(ref Object value) dg){ return super.opApply(dg); }
 }