RFR: 8346468: SM cleanup of common test library [v3]

Andrey Turbanov aturbanov at openjdk.org
Fri Jan 10 09:17:47 UTC 2025


On Wed, 18 Dec 2024 21:07:14 GMT, Roger Riggs <rriggs at openjdk.org> wrote:

>> SM Cleanup of common test library test/lib/...:
>> 
>> Remove unnecessary catches of SecurityException
>> Remove AccessController and doPrivileged from SimpleSSLContext and ProcessTools.
>
> Roger Riggs has updated the pull request incrementally with one additional commit since the last revision:
> 
>   Removed more references to WhiteBox$Permission

test/lib/jdk/test/lib/helpers/ClassFileInstaller.java line 96:

> 94:                 System.out.println("ClassFileInstaller: Writing to " + System.getProperty("user.dir"));
> 95:             }
> 96:             String[] classes = Arrays.copyOfRange(args,0, args.length);

Suggestion:

            String[] classes = Arrays.copyOfRange(args, 0, args.length);

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

PR Review Comment: https://git.openjdk.org/jdk/pull/22814#discussion_r1910050712


More information about the net-dev mailing list