RFR: 8323659: LinkedTransferQueue add and put methods call overridable offer [v3]

Chris Hegarty chegar at openjdk.org
Mon Jan 15 09:49:40 UTC 2024


On Mon, 15 Jan 2024 07:31:13 GMT, Andrey Turbanov <aturbanov at openjdk.org> wrote:

>> Chris Hegarty has updated the pull request incrementally with one additional commit since the last revision:
>> 
>>   timed offer
>
> src/java.base/share/classes/java/util/concurrent/LinkedTransferQueue.java line 1162:
> 
>> 1160:         Objects.requireNonNull(e);
>> 1161:         xfer(e, -1L);
>> 1162:         return true;    }
> 
> Suggestion:
> 
>         return true;
>     }

Thank you @turbanoff - accepted and committed.

-------------

PR Review Comment: https://git.openjdk.org/jdk/pull/17393#discussion_r1452141389


More information about the core-libs-dev mailing list