Skip to content
Snippets Groups Projects
Commit 52ccf1d3 authored by Zhang, Liye's avatar Zhang, Liye Committed by Reynold Xin
Browse files

[Core][test][minor] replace try finally block with tryWithSafeFinally

Author: Zhang, Liye <liye.zhang@intel.com>

Closes #5739 from liyezhang556520/trySafeFinally and squashes the following commits:

55683e5 [Zhang, Liye] replace try finally block with tryWithSafeFinally
parent b14cd236
No related branches found
No related tags found
No related merge requests found
......@@ -224,9 +224,9 @@ class FsHistoryProviderSuite extends FunSuite with BeforeAndAfter with Matchers
EventLoggingListener.initEventLog(new FileOutputStream(file))
}
val writer = new OutputStreamWriter(bstream, "UTF-8")
try {
Utils.tryWithSafeFinally {
events.foreach(e => writer.write(compact(render(JsonProtocol.sparkEventToJson(e))) + "\n"))
} finally {
} {
writer.close()
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment