Re: RFR : 7178639 : (XXS) Remove incorrect documentation from Deque.push(E e)

2013-05-02 Thread Martin Buchholz
My proposed changes are now in JSR166 CVS. Syncing work is needed before jdk8 ships!

Re: RFR : 7178639 : (XXS) Remove incorrect documentation from Deque.push(E e)

2013-04-29 Thread Martin Buchholz
On Mon, Apr 29, 2013 at 6:14 PM, Mike Duigou wrote: > Looks reasonable to me. Could BlockingDeque::push() just use {@inheritDoc} > for main body doc? > > Perhaps. But as I wrote many years ago in the same source file, /* * We have "diamond" multiple interface inheritance here, and that

Re: RFR : 7178639 : (XXS) Remove incorrect documentation from Deque.push(E e)

2013-04-29 Thread Mike Duigou
Looks reasonable to me. Could BlockingDeque::push() just use {@inheritDoc} for main body doc? Mike On Apr 29 2013, at 18:05 , Martin Buchholz wrote: > Below is my proposed alternative fix, that also adds some missing @throws, > reuses some existing wording, and makes small improvements to exi

Re: RFR : 7178639 : (XXS) Remove incorrect documentation from Deque.push(E e)

2013-04-29 Thread Martin Buchholz
Below is my proposed alternative fix, that also adds some missing @throws, reuses some existing wording, and makes small improvements to existing @throws specs (maintaining these specs is very tedious...) Index: src/main/java/util/Deque.java ===

Re: RFR : 7178639 : (XXS) Remove incorrect documentation from Deque.push(E e)

2013-04-29 Thread Mike Duigou
OK, I will wait on that and hopefully Chris can pick it up on the next jsr166 sync. Mike On Apr 29 2013, at 16:43 , Martin Buchholz wrote: > As always for changes to files maintained in jsr166 CVS, we'd like changes to > flow through jsr166 CVS into openjdk proper. > > In this case, there are

Re: RFR : 7178639 : (XXS) Remove incorrect documentation from Deque.push(E e)

2013-04-29 Thread Martin Buchholz
As always for changes to files maintained in jsr166 CVS, we'd like changes to flow through jsr166 CVS into openjdk proper. In this case, there are some issues with missing exception specs in implementing classes. I'll come up with a diff. Martin On Fri, Apr 26, 2013 at 5:12 PM, Mike Duigou wr

Re: RFR : 7178639 : (XXS) Remove incorrect documentation from Deque.push(E e)

2013-04-29 Thread Chris Hegarty
Looks fine to me too. -Chris. On 27/04/2013 02:05, Mandy Chung wrote: Looks good to me. Mandy On Apr 26, 2013, at 5:12 PM, Mike Duigou wrote: Hello all; A very small change to review. http://cr.openjdk.java.net/~mduigou/JDK-7178639/0/webrev/ The change removes some erroneous documentati

Re: RFR : 7178639 : (XXS) Remove incorrect documentation from Deque.push(E e)

2013-04-27 Thread Alan Bateman
On 27/04/2013 01:12, Mike Duigou wrote: Hello all; A very small change to review. http://cr.openjdk.java.net/~mduigou/JDK-7178639/0/webrev/ The change removes some erroneous documentation from the Deque push() method. Mike Looks fine to me too. -Alan

Re: RFR : 7178639 : (XXS) Remove incorrect documentation from Deque.push(E e)

2013-04-26 Thread Mandy Chung
Looks good to me. Mandy On Apr 26, 2013, at 5:12 PM, Mike Duigou wrote: > Hello all; > > A very small change to review. > > http://cr.openjdk.java.net/~mduigou/JDK-7178639/0/webrev/ > > The change removes some erroneous documentation from the Deque push() method. > > Mike

RFR : 7178639 : (XXS) Remove incorrect documentation from Deque.push(E e)

2013-04-26 Thread Mike Duigou
Hello all; A very small change to review. http://cr.openjdk.java.net/~mduigou/JDK-7178639/0/webrev/ The change removes some erroneous documentation from the Deque push() method. Mike