RFR: CODETOOLS-7902812: Fields can still be default initialized if class has only static intializers [v2]
Volker Simonis
simonis at openjdk.java.net
Wed Dec 16 11:11:17 UTC 2020
On Wed, 16 Dec 2020 10:48:27 GMT, Aleksey Shipilev <shade at openjdk.org> wrote:
>> Volker Simonis has updated the pull request incrementally with one additional commit since the last revision:
>>
>> Rewritten condition to match the genral code style
>
> jcstress-core/src/main/java/org/openjdk/jcstress/infra/processors/JCStressTestProcessor.java line 683:
>
>> 681: if (b.isStatic()) continue;
>> 682: // no instance initializers of any kind
>> 683: return false;
>
> I would write it as:
>
> if (member.getKind() == Tree.Kind.BLOCK) {
> BlockTree b = (BlockTree)member;
> // no instance initializers of any kind
> if (!b.isStatic()) return false;
> }
>
> ...to match the style of the method.
Sure. Rewritten as requested.
-------------
PR: https://git.openjdk.java.net/jcstress/pull/5
More information about the jcstress-dev
mailing list