View | Details | Raw Unified | Return to bug 189547
Collapse All | Expand All

(-)compiler/org/eclipse/jdt/internal/compiler/parser/Parser.java (-2 / +6 lines)
Lines 443-452 Link Here
443
		stream = new java.io.FileOutputStream(filename);
443
		stream = new java.io.FileOutputStream(filename);
444
		stream.write(bytes);
444
		stream.write(bytes);
445
	} catch(IOException e) {
445
	} catch(IOException e) {
446
		// ignore
447
	} finally {
446
		if (stream != null) {
448
		if (stream != null) {
447
			try {
449
			try {
448
				stream.close();
450
				stream.close();
449
			} catch (IOException e1) {
451
			} catch (IOException e) {
450
				// ignore
452
				// ignore
451
			}
453
			}
452
		}
454
		}
Lines 465-474 Link Here
465
		stream = new java.io.FileOutputStream(filename);
467
		stream = new java.io.FileOutputStream(filename);
466
		stream.write(bytes);
468
		stream.write(bytes);
467
	} catch(IOException e) {
469
	} catch(IOException e) {
470
		// ignore
471
	} finally {
468
		if (stream != null) {
472
		if (stream != null) {
469
			try {
473
			try {
470
				stream.close();
474
				stream.close();
471
			} catch (IOException e1) {
475
			} catch (IOException e) {
472
				// ignore
476
				// ignore
473
			}
477
			}
474
		}
478
		}

Return to bug 189547