8044694: Fix finally lint warnings in sun.print

Reviewed-by: prr
This commit is contained in:
Joe Darcy 2014-06-03 12:32:25 -07:00
parent 628e935254
commit f14291c318
2 changed files with 2 additions and 2 deletions

View File

@ -708,8 +708,8 @@ public class PSPrinterJob extends RasterPrinterJob {
}
} finally {
pw.flush();
throw new IOException(sw.toString());
}
throw new IOException(sw.toString());
}
}

View File

@ -992,8 +992,8 @@ public class UnixPrintJob implements CancelablePrintJob {
}
} finally {
pw.flush();
throw new IOException(sw.toString());
}
throw new IOException(sw.toString());
}
}