ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/CopyOnWriteArrayList.java
Revision 1.158 - (view) (download) (annotate) - [select for diffs]
Fri Mar 18 16:01:41 2022 UTC (2 years, 2 months ago) by dl
Branch: MAIN
CVS Tags: HEAD
Changes since 1.157: +1 -0 lines
Diff to previous 1.157
jdk17+ suppressWarnings, FJ updates

Revision 1.157 - (view) (download) (annotate) - [select for diffs]
Fri Jul 24 20:57:26 2020 UTC (3 years, 9 months ago) by jsr166
Branch: MAIN
Changes since 1.156: +8 -5 lines
Diff to previous 1.156
8231800: Better listing of arrays

Revision 1.156 - (view) (download) (annotate) - [select for diffs]
Wed Mar 20 01:21:51 2019 UTC (5 years, 2 months ago) by jsr166
Branch: MAIN
Changes since 1.155: +2 -1 lines
Diff to previous 1.155
8221120: CopyOnWriteArrayList.set should always have volatile write semantics

Revision 1.155 - (view) (download) (annotate) - [select for diffs]
Sun Nov 11 16:27:28 2018 UTC (5 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.154: +2 -2 lines
Diff to previous 1.154
Add portability layer for new location of SharedSecrets in JDK-8211122

Revision 1.154 - (view) (download) (annotate) - [select for diffs]
Mon Oct 1 00:10:53 2018 UTC (5 years, 7 months ago) by jsr166
Branch: MAIN
Changes since 1.153: +5 -5 lines
Diff to previous 1.153
update to using jdk11 by default, except link to jdk10 javadocs;
sync @docRoot references in javadoc with upstream

Revision 1.153 - (view) (download) (annotate) - [select for diffs]
Tue Jun 19 00:00:43 2018 UTC (5 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.152: +3 -1 lines
Diff to previous 1.152
use release fence only in clone; not needed in readObject

Revision 1.152 - (view) (download) (annotate) - [select for diffs]
Mon Jun 18 20:01:07 2018 UTC (5 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.151: +2 -0 lines
Diff to previous 1.151
resetLock: add a release fence

Revision 1.151 - (view) (download) (annotate) - [select for diffs]
Thu Apr 5 15:23:30 2018 UTC (6 years, 1 month ago) by jsr166
Branch: MAIN
Changes since 1.150: +1 -2 lines
Diff to previous 1.150
COWSubList#equals tweak

Revision 1.150 - (view) (download) (annotate) - [select for diffs]
Thu Apr 5 15:03:51 2018 UTC (6 years, 1 month ago) by jsr166
Branch: MAIN
Changes since 1.149: +1 -2 lines
Diff to previous 1.149
nano-refactoring of replaceAll methods

Revision 1.149 - (view) (download) (annotate) - [select for diffs]
Tue Apr 3 18:52:18 2018 UTC (6 years, 1 month ago) by jsr166
Branch: MAIN
Changes since 1.148: +9 -9 lines
Diff to previous 1.148
rangeCheckForAdd

Revision 1.148 - (view) (download) (annotate) - [select for diffs]
Tue Apr 3 16:32:40 2018 UTC (6 years, 1 month ago) by jsr166
Branch: MAIN
Changes since 1.147: +317 -187 lines
Diff to previous 1.147
Optimize COWAL sublists; stop subclassing AbstractList

Revision 1.147 - (view) (download) (annotate) - [select for diffs]
Sun Jan 7 22:00:39 2018 UTC (6 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.146: +2 -3 lines
Diff to previous 1.146
replace for loop with foreach loop

Revision 1.146 - (view) (download) (annotate) - [select for diffs]
Sun Jan 7 19:17:44 2018 UTC (6 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.145: +3 -3 lines
Diff to previous 1.145
code simplification

Revision 1.145 - (view) (download) (annotate) - [select for diffs]
Sun Jan 7 18:45:20 2018 UTC (6 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.144: +1 -3 lines
Diff to previous 1.144
code simplification

Revision 1.144 - (view) (download) (annotate) - [select for diffs]
Sun Oct 22 17:44:03 2017 UTC (6 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.143: +2 -0 lines
Diff to previous 1.143
sync 8174109: Better queuing priorities

Revision 1.143 - (view) (download) (annotate) - [select for diffs]
Sat May 6 06:49:46 2017 UTC (7 years ago) by jsr166
Branch: MAIN
Changes since 1.142: +1 -1 lines
Diff to previous 1.142
8177789: fix collections framework links to point to java.util package doc

Revision 1.142 - (view) (download) (annotate) - [select for diffs]
Sat Dec 24 19:32:07 2016 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.141: +5 -5 lines
Diff to previous 1.141
convert to Objects.requireNonNull

Revision 1.141 - (view) (download) (annotate) - [select for diffs]
Thu Dec 8 05:04:44 2016 UTC (7 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.140: +6 -0 lines
Diff to previous 1.140
add javadoc for @inheritDoc

Revision 1.140 - (view) (download) (annotate) - [select for diffs]
Tue Nov 15 22:23:57 2016 UTC (7 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.139: +147 -241 lines
Diff to previous 1.139
rewrite; fixes 8169738: CopyOnWriteArrayList subList needs more synchronization

Revision 1.139 - (view) (download) (annotate) - [select for diffs]
Sun Jun 5 20:41:14 2016 UTC (7 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.138: +1 -1 lines
Diff to previous 1.138
appease spell checker

Revision 1.138 - (view) (download) (annotate) - [select for diffs]
Sun Jun 5 00:56:44 2016 UTC (7 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.137: +14 -6 lines
Diff to previous 1.137
Need doPrivileged block to call Field.setAccessible

Revision 1.137 - (view) (download) (annotate) - [select for diffs]
Thu Jun 2 13:16:27 2016 UTC (7 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.136: +4 -7 lines
Diff to previous 1.136
VarHandles conversion; pass 1

Revision 1.136 - (view) (download) (annotate) - [select for diffs]
Tue Apr 19 22:55:30 2016 UTC (8 years, 1 month ago) by jsr166
Branch: MAIN
Changes since 1.135: +1 -1 lines
Diff to previous 1.135
s~\bsun\.(misc\.Unsafe)\b~jdk.internal.$1~g;
s~\bputOrdered([A-Za-z]+)\b~put${1}Release~g

Revision 1.135 - (view) (download) (annotate) - [select for diffs]
Wed Sep 30 01:16:00 2015 UTC (8 years, 7 months ago) by jsr166
Branch: MAIN
Changes since 1.134: +1 -2 lines
Diff to previous 1.134
merge with upstream

Revision 1.134 - (view) (download) (annotate) - [select for diffs]
Wed Sep 30 00:03:02 2015 UTC (8 years, 7 months ago) by jsr166
Branch: MAIN
Changes since 1.133: +4 -4 lines
Diff to previous 1.133
fix all the (optional) broken links using -Xdocrootparent hack

Revision 1.133 - (view) (download) (annotate) - [select for diffs]
Fri Sep 18 02:06:44 2015 UTC (8 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.132: +20 -0 lines
Diff to previous 1.132
merge upstream changes

Revision 1.132 - (view) (download) (annotate) - [select for diffs]
Mon Aug 3 19:20:17 2015 UTC (8 years, 9 months ago) by jsr166
Branch: MAIN
Changes since 1.131: +2 -2 lines
Diff to previous 1.131
Use Objects.equals; migrate last use of <tt> to {@code ...

Revision 1.131 - (view) (download) (annotate) - [select for diffs]
Thu Jul 9 17:37:17 2015 UTC (8 years, 10 months ago) by jsr166
Branch: MAIN
Changes since 1.130: +2 -1 lines
Diff to previous 1.130
improve comment in light of actual fix for JDK-6260652

Revision 1.130 - (view) (download) (annotate) - [select for diffs]
Wed May 20 05:57:05 2015 UTC (9 years ago) by jsr166
Branch: MAIN
Changes since 1.129: +18 -13 lines
Diff to previous 1.129
optimize removeIf for zero or one match

Revision 1.129 - (view) (download) (annotate) - [select for diffs]
Tue May 19 06:32:59 2015 UTC (9 years ago) by jsr166
Branch: MAIN
Changes since 1.128: +7 -12 lines
Diff to previous 1.128
replace eq with (standard) Objects.equals

Revision 1.128 - (view) (download) (annotate) - [select for diffs]
Sun Feb 22 05:08:16 2015 UTC (9 years, 2 months ago) by jsr166
Branch: MAIN
Changes since 1.127: +1 -1 lines
Diff to previous 1.127
COWIterator constructor should not be private

Revision 1.127 - (view) (download) (annotate) - [select for diffs]
Tue Feb 17 18:55:39 2015 UTC (9 years, 3 months ago) by jsr166
Branch: MAIN
Changes since 1.126: +1 -1 lines
Diff to previous 1.126
standardize code sample idiom: * <pre> {@code

Revision 1.126 - (view) (download) (annotate) - [select for diffs]
Sun Jan 25 21:16:25 2015 UTC (9 years, 3 months ago) by jsr166
Branch: MAIN
Changes since 1.125: +4 -10 lines
Diff to previous 1.125
use enhanced for loop

Revision 1.125 - (view) (download) (annotate) - [select for diffs]
Sun Jan 25 20:37:11 2015 UTC (9 years, 3 months ago) by jsr166
Branch: MAIN
Changes since 1.124: +12 -10 lines
Diff to previous 1.124
refactor out-of-bounds exception message string

Revision 1.124 - (view) (download) (annotate) - [select for diffs]
Sun Jan 25 20:07:01 2015 UTC (9 years, 3 months ago) by jsr166
Branch: MAIN
Changes since 1.123: +40 -159 lines
Diff to previous 1.123
prefer builtin monitor to ReentrantLock when either will do

Revision 1.123 - (view) (download) (annotate) - [select for diffs]
Sun Jan 4 09:15:11 2015 UTC (9 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.122: +5 -7 lines
Diff to previous 1.122
standardize Unsafe mechanics; slightly smaller bytecode

Revision 1.122 - (view) (download) (annotate) - [select for diffs]
Sun Jan 4 01:06:15 2015 UTC (9 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.121: +1 -1 lines
Diff to previous 1.121
use ReflectiveOperationException for Unsafe mechanics

Revision 1.121 - (view) (download) (annotate) - [select for diffs]
Fri Jan 2 07:42:41 2015 UTC (9 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.120: +1 -1 lines
Diff to previous 1.120
remove redundant parens

Revision 1.120 - (view) (download) (annotate) - [select for diffs]
Wed Dec 31 09:37:20 2014 UTC (9 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.119: +0 -1 lines
Diff to previous 1.119
remove unused/redundant imports

Revision 1.119 - (view) (download) (annotate) - [select for diffs]
Wed Dec 31 07:54:13 2014 UTC (9 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.118: +1 -0 lines
Diff to previous 1.118
standardize import statement order

Revision 1.118 - (view) (download) (annotate) - [select for diffs]
Tue Dec 2 05:48:28 2014 UTC (9 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.117: +1 -1 lines
Diff to previous 1.117
this collection => this XXX

Revision 1.117 - (view) (download) (annotate) - [select for diffs]
Sun Nov 23 21:40:08 2014 UTC (9 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.116: +1 -1 lines
Diff to previous 1.116
use Objects.equals in javadoc

Revision 1.116 - (view) (download) (annotate) - [select for diffs]
Sun Nov 23 18:46:47 2014 UTC (9 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.115: +2 -4 lines
Diff to previous 1.115
use Objects.equals in javadoc

Revision 1.115 - (view) (download) (annotate) - [select for diffs]
Fri Jan 31 17:58:35 2014 UTC (10 years, 3 months ago) by jsr166
Branch: MAIN
Changes since 1.114: +1 -1 lines
Diff to previous 1.114
add missing bounds check in subList, and corresponding missing tck tests

Revision 1.114 - (view) (download) (annotate) - [select for diffs]
Mon Nov 4 00:00:39 2013 UTC (10 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.113: +1 -1 lines
Diff to previous 1.113
stop using denigrated: Foo bar[];

Revision 1.113 - (view) (download) (annotate) - [select for diffs]
Thu Aug 8 15:13:34 2013 UTC (10 years, 9 months ago) by jsr166
Branch: MAIN
Changes since 1.112: +15 -0 lines
Diff to previous 1.112
add javadoc for spliterator()

Revision 1.112 - (view) (download) (annotate) - [select for diffs]
Thu Jul 18 18:21:22 2013 UTC (10 years, 10 months ago) by jsr166
Branch: MAIN
Changes since 1.111: +4 -0 lines
Diff to previous 1.111
javadoc warning fixes: add serialization method @throws

Revision 1.111 - (view) (download) (annotate) - [select for diffs]
Thu Jul 18 17:38:29 2013 UTC (10 years, 10 months ago) by jsr166
Branch: MAIN
Changes since 1.110: +2 -0 lines
Diff to previous 1.110
javadoc warning fixes: add serialization method @param

Revision 1.110 - (view) (download) (annotate) - [select for diffs]
Sun Jul 14 22:40:38 2013 UTC (10 years, 10 months ago) by jsr166
Branch: MAIN
Changes since 1.109: +2 -2 lines
Diff to previous 1.109
coding style

Revision 1.109 - (view) (download) (annotate) - [select for diffs]
Sun Jul 14 22:29:33 2013 UTC (10 years, 10 months ago) by jsr166
Branch: MAIN
Changes since 1.108: +5 -5 lines
Diff to previous 1.108
whitespace

Revision 1.108 - (view) (download) (annotate) - [select for diffs]
Fri May 10 11:40:10 2013 UTC (11 years ago) by dl
Branch: MAIN
Changes since 1.107: +168 -0 lines
Diff to previous 1.107
Override default implementations in sublists

Revision 1.107 - (view) (download) (annotate) - [select for diffs]
Mon May 6 18:50:41 2013 UTC (11 years ago) by jsr166
Branch: MAIN
Changes since 1.106: +8 -8 lines
Diff to previous 1.106
whitespace

Revision 1.106 - (view) (download) (annotate) - [select for diffs]
Mon May 6 15:52:59 2013 UTC (11 years ago) by dl
Branch: MAIN
Changes since 1.105: +101 -9 lines
Diff to previous 1.105
Support new Collection methods; bypass copy for some methods with COW args;

Revision 1.105 - (view) (download) (annotate) - [select for diffs]
Thu May 2 06:00:07 2013 UTC (11 years ago) by jsr166
Branch: MAIN
Changes since 1.104: +0 -1 lines
Diff to previous 1.104
port to latest lambda

Revision 1.104 - (view) (download) (annotate) - [select for diffs]
Fri Apr 12 20:23:03 2013 UTC (11 years, 1 month ago) by jsr166
Branch: MAIN
Changes since 1.103: +54 -30 lines
Diff to previous 1.103
optimize addIfAbsent and remove(Object) for non-mutating case

Revision 1.103 - (view) (download) (annotate) - [select for diffs]
Fri Apr 12 18:44:19 2013 UTC (11 years, 1 month ago) by jsr166
Branch: MAIN
Changes since 1.102: +5 -5 lines
Diff to previous 1.102
addAllAbsent: optimize away one array allocation

Revision 1.102 - (view) (download) (annotate) - [select for diffs]
Sat Apr 6 17:21:51 2013 UTC (11 years, 1 month ago) by jsr166
Branch: MAIN
Changes since 1.101: +1 -1 lines
Diff to previous 1.101
coding style

Revision 1.101 - (view) (download) (annotate) - [select for diffs]
Fri Apr 5 12:15:43 2013 UTC (11 years, 1 month ago) by dl
Branch: MAIN
Changes since 1.100: +2 -6 lines
Diff to previous 1.100
Improve addIfAbsent

Revision 1.100 - (view) (download) (annotate) - [select for diffs]
Wed Mar 13 12:39:02 2013 UTC (11 years, 2 months ago) by dl
Branch: MAIN
Changes since 1.99: +2 -17 lines
Diff to previous 1.99
Synch with lambda Spliterator API

Revision 1.99 - (view) (download) (annotate) - [select for diffs]
Mon Feb 25 17:59:40 2013 UTC (11 years, 2 months ago) by dl
Branch: MAIN
Changes since 1.98: +3 -2 lines
Diff to previous 1.98
lambda syncs and improvements

Revision 1.98 - (view) (download) (annotate) - [select for diffs]
Sun Feb 17 23:36:34 2013 UTC (11 years, 3 months ago) by dl
Branch: MAIN
Changes since 1.97: +23 -78 lines
Diff to previous 1.97
Spliterator sync

Revision 1.97 - (view) (download) (annotate) - [select for diffs]
Fri Feb 1 01:02:37 2013 UTC (11 years, 3 months ago) by dl
Branch: MAIN
Changes since 1.96: +3 -3 lines
Diff to previous 1.96
Use new java.util.function names

Revision 1.96 - (view) (download) (annotate) - [select for diffs]
Tue Jan 22 18:25:32 2013 UTC (11 years, 3 months ago) by dl
Branch: MAIN
Changes since 1.95: +1 -13 lines
Diff to previous 1.95
Spliterators

Revision 1.95 - (view) (download) (annotate) - [select for diffs]
Fri Jan 18 04:23:28 2013 UTC (11 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.94: +2 -2 lines
Diff to previous 1.94
use blessed modifier order

Revision 1.94 - (view) (download) (annotate) - [select for diffs]
Wed Jan 16 21:18:51 2013 UTC (11 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.93: +1 -1 lines
Diff to previous 1.93
whitespace

Revision 1.93 - (view) (download) (annotate) - [select for diffs]
Wed Jan 16 15:04:03 2013 UTC (11 years, 4 months ago) by dl
Branch: MAIN
Changes since 1.92: +113 -2 lines
Diff to previous 1.92
lambda-lib support

Revision 1.92 - (view) (download) (annotate) - [select for diffs]
Wed Jan 16 01:59:47 2013 UTC (11 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.91: +47 -47 lines
Diff to previous 1.91
<tt> -> {@code

Revision 1.91 - (view) (download) (annotate) - [select for diffs]
Sun Nov 18 18:03:11 2012 UTC (11 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.90: +1 -1 lines
Diff to previous 1.90
normalize whitespace after <p>

Revision 1.90 - (view) (download) (annotate) - [select for diffs]
Tue Feb 21 01:54:03 2012 UTC (12 years, 2 months ago) by jsr166
Branch: MAIN
Changes since 1.89: +2 -2 lines
Diff to previous 1.89
use third person in javadoc first sentence

Revision 1.89 - (view) (download) (annotate) - [select for diffs]
Thu Dec 22 23:25:51 2011 UTC (12 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.88: +1 -1 lines
Diff to previous 1.88
fix imports

Revision 1.88 - (view) (download) (annotate) - [select for diffs]
Wed Dec 21 19:38:28 2011 UTC (12 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.87: +2 -0 lines
Diff to previous 1.87
Trap null removAll and retainAll args

Revision 1.87 - (view) (download) (annotate) - [select for diffs]
Mon Dec 12 20:53:11 2011 UTC (12 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.86: +2 -5 lines
Diff to previous 1.86
uniform serialization method javadocs

Revision 1.86 - (view) (download) (annotate) - [select for diffs]
Tue Oct 25 20:45:17 2011 UTC (12 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.85: +1 -1 lines
Diff to previous 1.85
javadoc typo

Revision 1.85 - (view) (download) (annotate) - [select for diffs]
Tue Oct 25 20:29:12 2011 UTC (12 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.84: +1 -1 lines
Diff to previous 1.84
whitespace

Revision 1.84 - (view) (download) (annotate) - [select for diffs]
Sun Jul 3 06:47:23 2011 UTC (12 years, 10 months ago) by jsr166
Branch: MAIN
Changes since 1.83: +1 -1 lines
Diff to previous 1.83
make rangeCheck() package-private to inhibit bridge method

Revision 1.83 - (view) (download) (annotate) - [select for diffs]
Mon Jun 20 09:10:25 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.82: +5 -3 lines
Diff to previous 1.82
fix javac warnings for clone methods

Revision 1.82 - (view) (download) (annotate) - [select for diffs]
Sat Jun 18 19:13:56 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.81: +1 -1 lines
Diff to previous 1.81
remove extraneous parens

Revision 1.81 - (view) (download) (annotate) - [select for diffs]
Thu Jun 9 07:48:43 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.80: +1 -2 lines
Diff to previous 1.80
consistent style for code snippets

Revision 1.80 - (view) (download) (annotate) - [select for diffs]
Wed Jun 8 03:55:19 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.79: +6 -6 lines
Diff to previous 1.79
use "i" only for ints

Revision 1.79 - (view) (download) (annotate) - [select for diffs]
Wed Jun 8 03:51:46 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.78: +1 -2 lines
Diff to previous 1.78
whitespace

Revision 1.78 - (view) (download) (annotate) - [select for diffs]
Wed Jun 8 03:49:18 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.77: +0 -2 lines
Diff to previous 1.77
remove unused field

Revision 1.77 - (view) (download) (annotate) - [select for diffs]
Wed Jun 8 00:50:35 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.76: +0 -1 lines
Diff to previous 1.76
clean up imports

Revision 1.76 - (view) (download) (annotate) - [select for diffs]
Fri Jun 3 02:28:05 2011 UTC (12 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.75: +2 -2 lines
Diff to previous 1.75
fix javac 7 [rawtypes] warnings

Revision 1.75 - (view) (download) (annotate) - [select for diffs]
Thu Apr 21 11:30:11 2011 UTC (13 years, 1 month ago) by dl
Branch: MAIN
CVS Tags: release-1_7_0
Changes since 1.74: +2 -2 lines
Diff to previous 1.74
Typos

Revision 1.74 - (view) (download) (annotate) - [select for diffs]
Wed Apr 20 19:08:20 2011 UTC (13 years, 1 month ago) by dl
Branch: MAIN
Changes since 1.73: +4 -4 lines
Diff to previous 1.73
Use relative URLs in last change

Revision 1.73 - (view) (download) (annotate) - [select for diffs]
Wed Apr 20 16:25:54 2011 UTC (13 years, 1 month ago) by dl
Branch: MAIN
Changes since 1.72: +8 -4 lines
Diff to previous 1.72
Link for "optional" -- CR 6546713

Revision 1.72 - (view) (download) (annotate) - [select for diffs]
Tue Feb 22 23:53:32 2011 UTC (13 years, 2 months ago) by dl
Branch: MAIN
Changes since 1.71: +11 -8 lines
Diff to previous 1.71
Reduce dependencies in static initialization

Revision 1.71 - (view) (download) (annotate) - [select for diffs]
Wed Jan 5 05:05:20 2011 UTC (13 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.70: +3 -4 lines
Diff to previous 1.70
use enhanced for loop in writeObject

Revision 1.70 - (view) (download) (annotate) - [select for diffs]
Wed Jan 5 04:41:40 2011 UTC (13 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.69: +3 -4 lines
Diff to previous 1.69
improve serialization method comments

Revision 1.69 - (view) (download) (annotate) - [select for diffs]
Sun Nov 21 08:18:19 2010 UTC (13 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.68: +1 -1 lines
Diff to previous 1.68
invalid @code tags

Revision 1.68 - (view) (download) (annotate) - [select for diffs]
Sat Oct 16 16:48:01 2010 UTC (13 years, 7 months ago) by jsr166
Branch: MAIN
Changes since 1.67: +1 -1 lines
Diff to previous 1.67
whitespace

Revision 1.67 - (view) (download) (annotate) - [select for diffs]
Sun May 18 23:47:56 2008 UTC (16 years ago) by jsr166
Branch: MAIN
Changes since 1.66: +381 -381 lines
Diff to previous 1.66
Sync with OpenJDK; untabify

Revision 1.66 - (view) (download) (annotate) - [select for diffs]
Wed Aug 8 15:58:02 2007 UTC (16 years, 9 months ago) by jsr166
Branch: MAIN
Changes since 1.65: +37 -24 lines
Diff to previous 1.65
6570566: Incorrect range check in CopyOnWriteArrayList subLists
6570575: Cannot remove elements from CopyOnWriteArrayList subLists
6570631: CopyOnWriteArrayList subLists prohibit even non-structural modifications to parent list
6570924: CopyOnWriteArrayList subLists should implement RandomAccess

Revision 1.65 - (view) (download) (annotate) - [select for diffs]
Mon May 21 20:49:41 2007 UTC (17 years ago) by jsr166
Branch: MAIN
Changes since 1.64: +4 -8 lines
Diff to previous 1.64
6529795: (coll) Iterator.remove() fails if next() threw NoSuchElementException

Revision 1.64 - (view) (download) (annotate) - [select for diffs]
Sun May 28 23:36:29 2006 UTC (17 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.63: +1 -1 lines
Diff to previous 1.63
Location of Collections Guide has changed

Revision 1.63 - (view) (download) (annotate) - [select for diffs]
Tue Nov 29 06:32:46 2005 UTC (18 years, 5 months ago) by jsr166
Branch: MAIN
Changes since 1.62: +368 -368 lines
Diff to previous 1.62
sync with mustang

Revision 1.62 - (view) (download) (annotate) - [select for diffs]
Tue Nov 22 11:48:06 2005 UTC (18 years, 6 months ago) by dl
Branch: MAIN
Changes since 1.61: +362 -364 lines
Diff to previous 1.61
Use snapshot of other collection in addAll, addAllIfAbsent

Revision 1.61 - (view) (download) (annotate) - [select for diffs]
Sun Nov 20 15:38:08 2005 UTC (18 years, 6 months ago) by dl
Branch: MAIN
Changes since 1.60: +5 -5 lines
Diff to previous 1.60
Eliminate unnecessary special handling of toArray

Revision 1.60 - (view) (download) (annotate) - [select for diffs]
Sat Oct 1 22:09:39 2005 UTC (18 years, 7 months ago) by jsr166
Branch: MAIN
Changes since 1.59: +17 -16 lines
Diff to previous 1.59
Review Rework

Revision 1.59 - (view) (download) (annotate) - [select for diffs]
Wed Sep 28 02:16:52 2005 UTC (18 years, 7 months ago) by jsr166
Branch: MAIN
Changes since 1.58: +4 -4 lines
Diff to previous 1.58
whitespace

Revision 1.58 - (view) (download) (annotate) - [select for diffs]
Sun Sep 25 14:42:59 2005 UTC (18 years, 7 months ago) by dl
Branch: MAIN
Changes since 1.57: +7 -6 lines
Diff to previous 1.57
Improve equals specs

Revision 1.57 - (view) (download) (annotate) - [select for diffs]
Sun Sep 25 13:10:30 2005 UTC (18 years, 7 months ago) by dl
Branch: MAIN
Changes since 1.56: +28 -16 lines
Diff to previous 1.56
Improve equals method specs and implementations

Revision 1.56 - (view) (download) (annotate) - [select for diffs]
Wed Sep 14 22:52:49 2005 UTC (18 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.55: +12 -8 lines
Diff to previous 1.55
happens-before; volatile

Revision 1.55 - (view) (download) (annotate) - [select for diffs]
Sun Sep 11 03:13:26 2005 UTC (18 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.54: +16 -21 lines
Diff to previous 1.54
toString; equals

Revision 1.54 - (view) (download) (annotate) - [select for diffs]
Thu Sep 8 21:58:22 2005 UTC (18 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.53: +2 -2 lines
Diff to previous 1.53
whitespace

Revision 1.53 - (view) (download) (annotate) - [select for diffs]
Thu Sep 8 00:04:00 2005 UTC (18 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.52: +1 -1 lines
Diff to previous 1.52
Edit pass for happens-before descriptions

Revision 1.52 - (view) (download) (annotate) - [select for diffs]
Wed Sep 7 14:37:08 2005 UTC (18 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.51: +3 -1 lines
Diff to previous 1.51
clone should reset lock

Revision 1.51 - (view) (download) (annotate) - [select for diffs]
Fri Sep 2 01:03:08 2005 UTC (18 years, 8 months ago) by brian
Branch: MAIN
Changes since 1.50: +6 -0 lines
Diff to previous 1.50
Happens-before markup

Revision 1.50 - (view) (download) (annotate) - [select for diffs]
Thu Aug 25 03:16:10 2005 UTC (18 years, 8 months ago) by jsr166
Branch: MAIN
Changes since 1.49: +4 -3 lines
Diff to previous 1.49
sync up listIterator comments

Revision 1.49 - (view) (download) (annotate) - [select for diffs]
Mon Jul 18 19:14:17 2005 UTC (18 years, 10 months ago) by jsr166
Branch: MAIN
Changes since 1.48: +1 -1 lines
Diff to previous 1.48
doc fixes

Revision 1.48 - (view) (download) (annotate) - [select for diffs]
Thu Jul 14 10:48:23 2005 UTC (18 years, 10 months ago) by dl
Branch: MAIN
Changes since 1.47: +1 -1 lines
Diff to previous 1.47
Remove duplicate getArray call

Revision 1.47 - (view) (download) (annotate) - [select for diffs]
Tue Jun 21 07:45:09 2005 UTC (18 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.46: +3 -3 lines
Diff to previous 1.46
doc fixes

Revision 1.46 - (view) (download) (annotate) - [select for diffs]
Fri Jun 10 16:11:38 2005 UTC (18 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.45: +2 -2 lines
Diff to previous 1.45
Move index check

Revision 1.45 - (view) (download) (annotate) - [select for diffs]
Fri Jun 10 16:00:03 2005 UTC (18 years, 11 months ago) by jsr166
Branch: MAIN
Changes since 1.44: +377 -428 lines
Diff to previous 1.44
Use Arrays.copyOf

Revision 1.44 - (view) (download) (annotate) - [select for diffs]
Thu Jun 9 23:12:28 2005 UTC (18 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.43: +0 -2 lines
Diff to previous 1.43
remove redundant arrayCopy call

Revision 1.43 - (view) (download) (annotate) - [select for diffs]
Wed Jun 8 12:58:59 2005 UTC (18 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.42: +20 -17 lines
Diff to previous 1.42
Incorporate review comments

Revision 1.42 - (view) (download) (annotate) - [select for diffs]
Sun Jun 5 13:53:25 2005 UTC (18 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.41: +368 -225 lines
Diff to previous 1.41
Use ReentrantLock

Revision 1.41 - (view) (download) (annotate) - [select for diffs]
Tue May 31 17:39:18 2005 UTC (18 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.40: +110 -116 lines
Diff to previous 1.40
Reduce generics warnings

Revision 1.40 - (view) (download) (annotate) - [select for diffs]
Tue May 31 13:56:31 2005 UTC (18 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.39: +352 -337 lines
Diff to previous 1.39
Use anticipated Arrays.clone methods

Revision 1.39 - (view) (download) (annotate) - [select for diffs]
Sun May 29 14:02:53 2005 UTC (18 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.38: +1 -5 lines
Diff to previous 1.38
Avoid redundant bounds checks

Revision 1.38 - (view) (download) (annotate) - [select for diffs]
Sat May 21 17:32:20 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.37: +23 -9 lines
Diff to previous 1.37
doc fixes

Revision 1.37 - (view) (download) (annotate) - [select for diffs]
Sat May 21 03:02:42 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.36: +0 -5 lines
Diff to previous 1.36
containsAll

Revision 1.36 - (view) (download) (annotate) - [select for diffs]
Wed May 18 00:45:57 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.35: +5 -5 lines
Diff to previous 1.35
doc fixes

Revision 1.35 - (view) (download) (annotate) - [select for diffs]
Tue May 17 18:17:35 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.34: +209 -208 lines
Diff to previous 1.34
doc fixes

Revision 1.34 - (view) (download) (annotate) - [select for diffs]
Mon May 2 18:38:53 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.33: +1 -1 lines
Diff to previous 1.33
remove trailing whitespace

Revision 1.33 - (view) (download) (annotate) - [select for diffs]
Mon May 2 08:35:49 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.32: +4 -4 lines
Diff to previous 1.32
E o -> E e

Revision 1.32 - (view) (download) (annotate) - [select for diffs]
Tue Apr 26 23:46:37 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.31: +42 -41 lines
Diff to previous 1.31
doc fixes

Revision 1.31 - (view) (download) (annotate) - [select for diffs]
Tue Apr 26 19:54:03 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.30: +12 -12 lines
Diff to previous 1.30
doc fixes

Revision 1.30 - (view) (download) (annotate) - [select for diffs]
Tue Apr 26 01:43:01 2005 UTC (19 years ago) by jsr166
Branch: MAIN
Changes since 1.29: +14 -14 lines
Diff to previous 1.29
doc fixes

Revision 1.29 - (view) (download) (annotate) - [select for diffs]
Mon Mar 7 23:49:21 2005 UTC (19 years, 2 months ago) by dl
Branch: MAIN
Changes since 1.28: +8 -8 lines
Diff to previous 1.28
Javadoc improvements

Revision 1.28 - (view) (download) (annotate) - [select for diffs]
Sat Apr 10 14:25:24 2004 UTC (20 years, 1 month ago) by dl
Branch: MAIN
Changes since 1.27: +1 -1 lines
Diff to previous 1.27
Documentation improvements

Revision 1.27 - (view) (download) (annotate) - [select for diffs]
Tue Feb 17 00:56:31 2004 UTC (20 years, 3 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_PFD
Changes since 1.26: +1 -1 lines
Diff to previous 1.26
Typo fix

Revision 1.26 - (view) (download) (annotate) - [select for diffs]
Mon Feb 9 13:28:47 2004 UTC (20 years, 3 months ago) by dl
Branch: MAIN
Changes since 1.25: +6 -4 lines
Diff to previous 1.25
Wording fixes and improvements

Revision 1.25 - (view) (download) (annotate) - [select for diffs]
Mon Feb 9 00:23:55 2004 UTC (20 years, 3 months ago) by dl
Branch: MAIN
Changes since 1.24: +5 -6 lines
Diff to previous 1.24
Wording improvements and fixes

Revision 1.24 - (view) (download) (annotate) - [select for diffs]
Tue Jan 27 11:36:31 2004 UTC (20 years, 3 months ago) by dl
Branch: MAIN
Changes since 1.23: +5 -0 lines
Diff to previous 1.23
Add Collection framework membership doc

Revision 1.23 - (view) (download) (annotate) - [select for diffs]
Tue Jan 20 04:35:02 2004 UTC (20 years, 4 months ago) by dl
Branch: MAIN
Changes since 1.22: +3 -0 lines
Diff to previous 1.22
javadoc lint; Thread.interrupt shouldn't throw exception if thread dead

Revision 1.22 - (view) (download) (annotate) - [select for diffs]
Thu Jan 15 15:10:31 2004 UTC (20 years, 4 months ago) by tim
Branch: MAIN
Changes since 1.21: +8 -8 lines
Diff to previous 1.21
fixed signatures to match java.util

Revision 1.21 - (view) (download) (annotate) - [select for diffs]
Mon Dec 29 19:05:22 2003 UTC (20 years, 4 months ago) by dl
Branch: MAIN
Changes since 1.20: +1 -1 lines
Diff to previous 1.20
spellcheck

Revision 1.20 - (view) (download) (annotate) - [select for diffs]
Wed Nov 12 01:04:24 2003 UTC (20 years, 6 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_DEC9_POST_ES_SUBMIT, JSR166_DEC9_PRE_ES_SUBMIT
Changes since 1.19: +8 -8 lines
Diff to previous 1.19
fixed typos; avoided some casts

Revision 1.19 - (view) (download) (annotate) - [select for diffs]
Sun Oct 19 13:38:34 2003 UTC (20 years, 7 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_NOV3_FREEZE
Changes since 1.18: +1 -1 lines
Diff to previous 1.18
Changed doc strings for generic params

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Sat Oct 18 12:29:33 2003 UTC (20 years, 7 months ago) by dl
Branch: MAIN
Changes since 1.17: +1 -0 lines
Diff to previous 1.17
Added docs for type params

Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Fri Oct 10 23:51:28 2003 UTC (20 years, 7 months ago) by dl
Branch: MAIN
Changes since 1.16: +1 -1 lines
Diff to previous 1.16
Rephrased by-permission clause

Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Fri Sep 26 11:37:10 2003 UTC (20 years, 7 months ago) by dl
Branch: MAIN
Changes since 1.15: +3 -3 lines
Diff to previous 1.15
Spellcheck

Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Sat Sep 13 18:51:11 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.14: +57 -54 lines
Diff to previous 1.14
Proofreading pass -- many minor adjustments

Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Sun Aug 31 13:33:13 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.13: +17 -17 lines
Diff to previous 1.13
Removed non-standard tags and misc javadoc cleanup

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Sat Aug 30 16:07:39 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.12: +9 -0 lines
Diff to previous 1.12
Define clear in sublist to avoid abstract version

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Tue Aug 26 13:07:36 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.11: +80 -87 lines
Diff to previous 1.11
Style cleanups to COWList; CyclicBarrier broken barriers now Fast-fail

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Mon Aug 25 19:27:58 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.10: +1 -0 lines
Diff to previous 1.10
serialVersionUIDs

Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Fri Aug 8 20:05:07 2003 UTC (20 years, 9 months ago) by tim
Branch: MAIN
Changes since 1.9: +3 -6 lines
Diff to previous 1.9
Scrunched catch, finally, else clauses.

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Wed Aug 6 18:22:09 2003 UTC (20 years, 9 months ago) by tim
Branch: MAIN
CVS Tags: JSR166_CR1
Changes since 1.8: +6 -6 lines
Diff to previous 1.8
Fixes to minor errors found by DocCheck

Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Thu Jul 31 16:49:32 2003 UTC (20 years, 9 months ago) by tim
Branch: MAIN
Changes since 1.7: +4 -4 lines
Diff to previous 1.7
Fix unchecked calls to raw type

Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Sat Jul 26 13:17:51 2003 UTC (20 years, 9 months ago) by tim
Branch: MAIN
Changes since 1.6: +88 -84 lines
Diff to previous 1.6
Default compiler is now 2.2-ea. Some sources are not compatible with 2.0-ea.

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Tue Jun 24 14:34:47 2003 UTC (20 years, 10 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_PRELIMINARY_TEST_RELEASE_2
Changes since 1.5: +35 -24 lines
Diff to previous 1.5
Added missing javadoc tags; minor reformatting

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Mon Jun 23 02:26:16 2003 UTC (20 years, 11 months ago) by brian
Branch: MAIN
Changes since 1.4: +4 -3 lines
Diff to previous 1.4
Partial javadoc pass

Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Sat Jun 7 18:20:20 2003 UTC (20 years, 11 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_PRELIMINARY_TEST_RELEASE_1
Changes since 1.3: +10 -11 lines
Diff to previous 1.3
Misc documentation updates

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Fri Jun 6 16:53:04 2003 UTC (20 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.2: +12 -2 lines
Diff to previous 1.2
Minor doc updates; FairReentrantLock serialize now

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Tue May 27 18:14:39 2003 UTC (20 years, 11 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_PRERELEASE_0_1
Changes since 1.1: +22 -23 lines
Diff to previous 1.1
re-check-in initial implementations

Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Wed May 14 21:30:46 2003 UTC (21 years ago) by tim
Branch: MAIN
Moved main source rooted at . to ./src/main
Moved test source rooted at ./etc/testcases to ./src/test

Convenience Links

Links to HEAD: (view) (download) (annotate)

Compare Revisions

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a