On Wed, 20 Nov 2024 22:50:53 GMT, Harshitha Onkar <[email protected]> wrote:
> Minor: These are on unchanged lines. Since AudioSystem.getLine(infos[0]) no
> longer throws security exception, the SecurityException catch block can be
> removed.
>
> ```
> try {
> l = AudioSystem.getLine(infos[0]);
> } catch(SecurityException lue) {
> log.println("SecurityException");
> return STATUS_PASSED;
> }
> ```
Good catch. It was so far out of sight I missed that. I've removed it.
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/22284#discussion_r1851101280