RFR: 8308097: Generational ZGC: Update constructor syntax

Stefan Karlsson stefank at openjdk.org
Tue May 16 16:16:56 UTC 2023


On Mon, 15 May 2023 13:11:42 GMT, Stefan Karlsson <stefank at openjdk.org> wrote:

> ZGC's current constructor syntax works well with some editors, but not all. There is a wish to move over from the current syntax:
> 
> 
> ZClass:ZClass() :
>     ZSuper(),
>     _member0,
>     _member1 {
>   // Code
>   doit();
> }
> 
> 
> to the following syntax:
> 
> ZClass:ZClass()
>   : ZSuper(),
>     _member0,
>     _member1 {
>   // Code
>   doit();
> }
> 
> 
> I propose that make this change.

Thanks for the reviews!

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

PR Comment: https://git.openjdk.org/jdk/pull/13987#issuecomment-1549971807


More information about the hotspot-gc-dev mailing list