Re: RFR: JDK-8283480: Make AbstractStringBuilder sealed

2022-03-22 Thread Daniel Fuchs
On Tue, 22 Mar 2022 00:01:59 GMT, Joe Darcy wrote: > As part of updating the core libraries to be sealed, the package-access > AbstractStringBuilder, implementation superclass of StringBuilder and > StringBuffer, can be marked as sealed with those two subclasses on its > permits list. LGTM. T

Re: RFR: JDK-8283480: Make AbstractStringBuilder sealed

2022-03-21 Thread Jim Laskey
On Tue, 22 Mar 2022 00:01:59 GMT, Joe Darcy wrote: > As part of updating the core libraries to be sealed, the package-access > AbstractStringBuilder, implementation superclass of StringBuilder and > StringBuffer, can be marked as sealed with those two subclasses on its > permits list. LGTM -

Re: RFR: JDK-8283480: Make AbstractStringBuilder sealed

2022-03-21 Thread Roger Riggs
On Tue, 22 Mar 2022 00:01:59 GMT, Joe Darcy wrote: > As part of updating the core libraries to be sealed, the package-access > AbstractStringBuilder, implementation superclass of StringBuilder and > StringBuffer, can be marked as sealed with those two subclasses on its > permits list. Marked

Re: RFR: JDK-8283480: Make AbstractStringBuilder sealed

2022-03-21 Thread Jonathan Gibbons
On Tue, 22 Mar 2022 00:01:59 GMT, Joe Darcy wrote: > As part of updating the core libraries to be sealed, the package-access > AbstractStringBuilder, implementation superclass of StringBuilder and > StringBuffer, can be marked as sealed with those two subclasses on its > permits list. Marked

RFR: JDK-8283480: Make AbstractStringBuilder sealed

2022-03-21 Thread Joe Darcy
As part of updating the core libraries to be sealed, the package-access AbstractStringBuilder, implementation superclass of StringBuilder and StringBuffer, can be marked as sealed with those two subclasses on its permits list. - Commit messages: - Merge branch 'master' into JDK-82