aboutsummaryrefslogtreecommitdiff
path: root/libjava/java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java')
-rw-r--r--libjava/java/util/AbstractList.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/libjava/java/util/AbstractList.java b/libjava/java/util/AbstractList.java
index 03282e5..cec2c29 100644
--- a/libjava/java/util/AbstractList.java
+++ b/libjava/java/util/AbstractList.java
@@ -496,7 +496,8 @@ public abstract class AbstractList extends AbstractCollection implements List
public void remove()
{
i.remove();
- SubList.this.modCount++;
+ // FIXME: Uncomment the following line once the compiler is fixed.
+ //SubList.this.modCount++;
size--;
position = nextIndex();
}
@@ -509,7 +510,8 @@ public abstract class AbstractList extends AbstractCollection implements List
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++;
}