RFR: 8273299: Unnecessary Vector usage in java.security.jgss [v2]
Andrey Turbanov
github.com+741251+turbanoff at openjdk.java.net
Thu Sep 23 20:31:16 UTC 2021
On Thu, 26 Aug 2021 20:37:59 GMT, Andrey Turbanov <github.com+741251+turbanoff at openjdk.org> wrote:
>> src/java.security.jgss/share/classes/sun/security/krb5/internal/ccache/FileCredentialsCache.java line 574:
>>
>>> 572: v.add(st.nextToken());
>>> 573: }
>>> 574: final String[] command = new String[v.size()];
>>
>> Could probably simplify most of these .toArray to simply `var variable = myarraylist.toArray(new ArrayType[0])`
>
> I think it's better to leave it to separate cleanup issue.
Simplified
-------------
PR: https://git.openjdk.java.net/jdk/pull/5264
More information about the security-dev
mailing list