diff --git a/RELEASE-NOTES-2.1.html b/RELEASE-NOTES-2.1.html
index 727c25abc..dc0e12904 100644
--- a/RELEASE-NOTES-2.1.html
+++ b/RELEASE-NOTES-2.1.html
@@ -9,8 +9,6 @@ are:
- Buffers - A new collection interface for queues and
queue-like things.
-- Primitives - A new package for collections that store the
-data as primitive elements instead of objects.
- Decorators - A group of static utility classes that provide
decorators for other collections
@@ -61,33 +59,6 @@ NEW COLLECTIONS, COMPARATORS, ITERATORS AND UTILITY CLASSES
implementation. It places no upper limit on the number of elements.
-These are the new collections in the primitives subpackage:
-
-
-- AbstractIntList - Abstract base class for lists
- of ints.
-- AbstractLongList - Abstract base class for lists
- of longs.
-- AbstractShortList - Abstract base class for lists
- of shorts.
-- AbstractIntArrayList - Abstract base class for lists
- backed by an int array.
-- AbstractLongArrayList - Abstract base class for lists
- backed by a long array.
-- AbstractShortArrayList - Abstract base class for lists
- backed by a short array.
-- FloatArrayList - A list backed by a float array.
-- IntArrayList - A list of int elements.
-- LongArrayList - A list of long elements.
-- ShortArrayList - A list of short elements.
-- UnsignedByteArrayList - A list of unsigned 8-bit values,
- stored in a short array.
-- UnsignedIntArrayList - A list of unsigned 32-bit values,
- stored in a long array.
-- UnsignedShortArrayList - A list of unsigned 16-bit
- values, stored in an int array.
-
-
These comparators are new to Collections 2.1: