GitSmartHttpTools: Open SideBandOutputStream in try-with-resource

Change-Id: Ie7c17f98579e7241f2b5c8204435c76686eeb568
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
This commit is contained in:
David Pursehouse 2019-01-21 14:02:02 +09:00
parent 95d74f22fb
commit f5614e03f1
1 changed files with 5 additions and 4 deletions

View File

@ -299,10 +299,11 @@ private static boolean isReceivePackSideBand(HttpServletRequest req) {
private static void writeSideBand(OutputStream out, String textForGit)
throws IOException {
@SuppressWarnings("resource" /* java 7 */)
OutputStream msg = new SideBandOutputStream(CH_ERROR, SMALL_BUF, out);
msg.write(Constants.encode("error: " + textForGit));
msg.flush();
try (OutputStream msg = new SideBandOutputStream(CH_ERROR, SMALL_BUF,
out)) {
msg.write(Constants.encode("error: " + textForGit));
msg.flush();
}
}
private static void writePacket(PacketLineOut pckOut, String textForGit)