### Eclipse Workspace Patch 1.0 #P org.eclipse.jdt.core Index: compiler/org/eclipse/jdt/internal/compiler/parser/Parser.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/Parser.java,v retrieving revision 1.371 diff -u -r1.371 Parser.java --- compiler/org/eclipse/jdt/internal/compiler/parser/Parser.java 25 Apr 2007 16:59:23 -0000 1.371 +++ compiler/org/eclipse/jdt/internal/compiler/parser/Parser.java 29 May 2007 02:27:55 -0000 @@ -443,10 +443,12 @@ stream = new java.io.FileOutputStream(filename); stream.write(bytes); } catch(IOException e) { + // ignore + } finally { if (stream != null) { try { stream.close(); - } catch (IOException e1) { + } catch (IOException e) { // ignore } } @@ -465,10 +467,12 @@ stream = new java.io.FileOutputStream(filename); stream.write(bytes); } catch(IOException e) { + // ignore + } finally { if (stream != null) { try { stream.close(); - } catch (IOException e1) { + } catch (IOException e) { // ignore } }