diff options
author | Dalibor Topic <robilad@kaffe.org> | 2007-08-08 08:00:32 +0000 |
---|---|---|
committer | Matthias Klose <doko@gcc.gnu.org> | 2007-08-08 08:00:32 +0000 |
commit | 473210a961853103e0155332b2df87559cc63f08 (patch) | |
tree | 964d5a02b48bb86df99ae1b3278b0daa90e72c4d /libjava/classpath/ChangeLog | |
parent | 5b6693af786130f37f0b7cebe023f8004361ff7f (diff) | |
download | gcc-473210a961853103e0155332b2df87559cc63f08.zip gcc-473210a961853103e0155332b2df87559cc63f08.tar.gz gcc-473210a961853103e0155332b2df87559cc63f08.tar.bz2 |
re PR classpath/32844 (EnumSet causes code to be miscompiled)
2007-07-31 Dalibor Topic <robilad@kaffe.org>
PR 32844
* java/util/EnumSet.java:
Made class abstract per API spec.
(size, iterator, add, addAll, clear, contains,
containsAll, remove, removeAll, retainAll) Moved
into an anonymous inner class in of(T).
(allOf, noneOf, copyOf, of, range) Made more
implementation independent.
(of(T)) return an instance of an anonymous class
implementing EmptySet.
From-SVN: r127291
Diffstat (limited to 'libjava/classpath/ChangeLog')
-rw-r--r-- | libjava/classpath/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libjava/classpath/ChangeLog b/libjava/classpath/ChangeLog index 33455ac..cb34d1d 100644 --- a/libjava/classpath/ChangeLog +++ b/libjava/classpath/ChangeLog @@ -1,3 +1,16 @@ +2007-07-31 Dalibor Topic <robilad@kaffe.org> + + PR 32844 + * java/util/EnumSet.java: + Made class abstract per API spec. + (size, iterator, add, addAll, clear, contains, + containsAll, remove, removeAll, retainAll) Moved + into an anonymous inner class in of(T). + (allOf, noneOf, copyOf, of, range) Made more + implementation independent. + (of(T)) return an instance of an anonymous class + implementing EmptySet. + 2007-07-28 Matthias Klose <doko@ubuntu.com> * include/jvmti.h(jniNativeInterface): Rename type. |