Description
Here is code starting from line 828:
try { FileWriter out = new FileWriter(restartMeta); // write out the current time. out.write(Long.toString(Time.now() + restartBudget)); out.flush(); out.close(); } catch (IOException ioe) {
If write() or flush() call throws IOException, out wouldn't be closed.