Document empty catch block to silence warning

Change-Id: I643f916e394ca95272b58d0b5826e81cc1092f2f
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2015-06-10 01:39:52 +02:00 committed by Jonathan Nieder
parent e03928f160
commit 8468fae293
1 changed files with 1 additions and 0 deletions

View File

@ -246,6 +246,7 @@ void sendString(final String s) throws IOException {
try {
postReceive.onPostReceive(this, filterCommands(Result.OK));
} catch (Throwable e) {
// empty
}
throw new UnpackException(unpackError);
}