ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/CopyOnWriteArrayList.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/CopyOnWriteArrayList.java (file contents):
Revision 1.32 by jsr166, Tue Apr 26 23:46:37 2005 UTC vs.
Revision 1.33 by jsr166, Mon May 2 08:35:49 2005 UTC

# Line 952 | Line 952 | public class CopyOnWriteArrayList<E>
952           * @throws UnsupportedOperationException always; <tt>set</tt>
953           *         is not supported by this iterator.
954           */
955 <        public void set(E o) {
955 >        public void set(E e) {
956              throw new UnsupportedOperationException();
957          }
958  
# Line 961 | Line 961 | public class CopyOnWriteArrayList<E>
961           * @throws UnsupportedOperationException always; <tt>add</tt>
962           *         is not supported by this iterator.
963           */
964 <        public void add(E o) {
964 >        public void add(E e) {
965              throw new UnsupportedOperationException();
966          }
967      }
# Line 1167 | Line 1167 | public class CopyOnWriteArrayList<E>
1167              throw new UnsupportedOperationException();
1168          }
1169  
1170 <        public void set(E o) {
1170 >        public void set(E e) {
1171              throw new UnsupportedOperationException();
1172          }
1173  
1174 <        public void add(E o) {
1174 >        public void add(E e) {
1175              throw new UnsupportedOperationException();
1176          }
1177      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines