aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libjava/ChangeLog5
-rw-r--r--libjava/java/util/LinkedList.java10
2 files changed, 7 insertions, 8 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog
index 017a99a..161649f 100644
--- a/libjava/ChangeLog
+++ b/libjava/ChangeLog
@@ -1,3 +1,8 @@
+2001-07-17 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
+
+ * java/util/LinkedList.java (clone): Clear the copy list with clear(),
+ not by setting its size field.
+
2001-07-12 Tom Tromey <tromey@redhat.com>
David Brownell <david-b@pacbell.net>
diff --git a/libjava/java/util/LinkedList.java b/libjava/java/util/LinkedList.java
index 092c8bd..41ca093 100644
--- a/libjava/java/util/LinkedList.java
+++ b/libjava/java/util/LinkedList.java
@@ -474,7 +474,7 @@ public class LinkedList extends AbstractSequentialList
catch (CloneNotSupportedException ex)
{
}
- copy.size = 0;
+ copy.clear();
copy.addAll(this);
return copy;
}
@@ -534,9 +534,7 @@ public class LinkedList extends AbstractSequentialList
}
/** A ListIterator over the list. This class keeps track of its
- * position in the list, the size of the list, and the two list
- * entries it is between. This enables it to be used identically
- * for both the list itself and a sublist of the list.
+ * position in the list and the two list entries it is between.
*/
class LinkedListItr implements ListIterator
{
@@ -546,10 +544,6 @@ public class LinkedList extends AbstractSequentialList
Entry lastReturned; // entry that will be affected by remove() or set().
int position; // index of `next'.
- /**
- * Create a new Iter starting at a given Entry within the list, at a given
- * position, in a list of given size.
- */
LinkedListItr(int index)
{
if (index == size)