Browse Source

TagBuilder: Open OutputStreamWriter in try-with-resource

Change-Id: Ic0e23039b0aec6171f192234c6b1474cd32eadff
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
stable-4.11
David Pursehouse 7 years ago committed by Matthias Sohn
parent
commit
cf489d36b9
  1. 5
      org.eclipse.jgit/src/org/eclipse/jgit/lib/TagBuilder.java

5
org.eclipse.jgit/src/org/eclipse/jgit/lib/TagBuilder.java

@ -180,8 +180,8 @@ public class TagBuilder {
*/
public byte[] build() {
ByteArrayOutputStream os = new ByteArrayOutputStream();
OutputStreamWriter w = new OutputStreamWriter(os, Constants.CHARSET);
try {
try (OutputStreamWriter w = new OutputStreamWriter(os,
Constants.CHARSET)) {
w.write("object "); //$NON-NLS-1$
getObjectId().copyTo(w);
w.write('\n');
@ -203,7 +203,6 @@ public class TagBuilder {
w.write('\n');
if (getMessage() != null)
w.write(getMessage());
w.close();
} catch (IOException err) {
// This should never occur, the only way to get it above is
// for the ByteArrayOutputStream to throw, but it doesn't.

Loading…
Cancel
Save