未验证 提交 711ef4e7 编写于 作者: P Peter Jonsson 提交者: GitHub

Prevent resource leak in FileFingerprintStorage (#4992)

上级 d5ed8416
......@@ -137,8 +137,7 @@ public class FileFingerprintStorage extends FingerprintStorage {
file.getParentFile().mkdirs();
// JENKINS-16301: fast path for the common case.
AtomicFileWriter afw = new AtomicFileWriter(file);
try {
PrintWriter w = new PrintWriter(afw);
try (PrintWriter w = new PrintWriter(afw)) {
w.println("<?xml version='1.1' encoding='UTF-8'?>");
w.println("<fingerprint>");
w.print(" <timestamp>");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册