Re: RFR: 8342336: Optimize ClassFile imports [v2]

2024-10-16 Thread Chen Liang
On Wed, 16 Oct 2024 16:24:55 GMT, Shaojin Wen wrote: >> This is a code style improvement for imports in the java/lang/classfile and >> jdk/internal/classfile/impl directories, includes: >> 1. Import in alphabetical order >> 2. Add a blank line between java and jdk imports >> 3. Use import * for

Re: RFR: 8342336: Optimize ClassFile imports [v2]

2024-10-16 Thread Shaojin Wen
> This is a code style improvement for imports in the java/lang/classfile and > jdk/internal/classfile/impl directories, includes: > 1. Import in alphabetical order > 2. Add a blank line between java and jdk imports > 3. Use import * for a large number of imports Shaojin Wen has updated the pull

Re: RFR: 8342336: Optimize ClassFile imports

2024-10-16 Thread Chen Liang
On Sun, 13 Oct 2024 01:42:38 GMT, Shaojin Wen wrote: > This is a code style improvement for imports in the java/lang/classfile and > jdk/internal/classfile/impl directories, includes: > 1. Import in alphabetical order > 2. Add a blank line between java and jdk imports > 3. Use import * for a lar

Re: RFR: 8342336: Optimize ClassFile imports

2024-10-16 Thread Chen Liang
On Sun, 13 Oct 2024 01:42:38 GMT, Shaojin Wen wrote: > This is a code style improvement for imports in the java/lang/classfile and > jdk/internal/classfile/impl directories, includes: > 1. Import in alphabetical order > 2. Add a blank line between java and jdk imports > 3. Use import * for a lar

RFR: 8342336: Optimize ClassFile imports

2024-10-16 Thread Shaojin Wen
This is a code style improvement for imports in the java/lang/classfile and jdk/internal/classfile/impl directories, includes: 1. Import in alphabetical order 2. Add a blank line between java and jdk imports 3. Use import * for a large number of imports - Commit messages: - optimize