Hello All,
Please review the following fix in JDK10 : Bug : https://bugs.openjdk.java.net/browse/JDK-8183349 Webrev : http://cr.openjdk.java.net/~jdv/8183349/webrev.00/ Issue : Temporary image files created in test case are not getting deleted after test execution is finished. Root cause : ImageOutputStream related to the file was closed previously and not FileOutputStream which was its parent. Solution : Closing the FileOutputStream allows us to delete temporary file. Also replaced file.deleteOnExit() with Files.delete(). Thanks, Jay