2000-11-02 Bryce McKinlay <bryce@albatross.co.nz>
* java/util/AbstractList.java (remove): Comment out modCount
increment to work around compiler bug.
(add): Ditto.
From-SVN: r37204
+2000-11-02 Bryce McKinlay <bryce@albatross.co.nz>
+
+ * java/util/AbstractList.java (remove): Comment out modCount increment
+ to work around compiler bug.
+ (add): Ditto.
+
2000-11-02 Bryce McKinlay <bryce@albatross.co.nz>
* java/util/AbstractList.java: Throw messages with
public void remove()
{
i.remove();
- SubList.this.modCount++;
+ // FIXME: Uncomment the following line once the compiler is fixed.
+ //SubList.this.modCount++;
size--;
position = nextIndex();
}
public void add(Object o)
{
i.add(o);
- SubList.this.modCount++;
+ // FIXME: Uncomment the following line once the compiler is fixed.
+ //SubList.this.modCount++;
size++;
position++;
}