diff -r f0739350a62d -r c8eceba990bf langtools/test/tools/javac/api/6411333/T6411333.java --- a/langtools/test/tools/javac/api/6411333/T6411333.java Wed Oct 29 18:01:22 2014 -0700 +++ b/langtools/test/tools/javac/api/6411333/T6411333.java Wed Oct 29 19:07:34 2014 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2006, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -82,7 +82,10 @@ testRelativeUri("util/List.java", false); testRelativeUri("/util/List.java", true); } - public static void main(String... args) { - new T6411333().test(args); + + public static void main(String... args) throws IOException { + try (T6411333 t = new T6411333()) { + t.test(args); + } } }