< prev index next >

src/com/sun/javatest/EditJTI.java

Print this page
rev 145 : 7902225: InterviewParameters, EditJTI warnings: unreachable catch clause
Reviewed-by: jjg

*** 591,605 **** InputStream in; try { in = new BufferedInputStream(new FileInputStream(file)); } catch (FileNotFoundException e) { ! throw new Fault(i18n, "editJTI.cantFindImport", file); ! } ! catch (IOException e) { ! throw new Fault(i18n, "editJTI.cantOpenImport", ! new Object[] { file, e }); } Properties p; try { p = new Properties(); --- 591,601 ---- InputStream in; try { in = new BufferedInputStream(new FileInputStream(file)); } catch (FileNotFoundException e) { ! throw new Fault(i18n, "editJTI.cantFindImport", new Object[] { file, e }); } Properties p; try { p = new Properties();
< prev index next >