aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2015-06-10 01:39:52 +0200
committerJonathan Nieder <jrn@google.com>2015-06-09 20:12:27 -0400
commit8468fae293fe2f8525e4fb23a98bdec0a6923b52 (patch)
tree3751e1901c74fb01d5d6f0cfa4b65e10f2b71d7c
parente03928f160efa1f60d3ed23405d82c425ac2ac5a (diff)
downloadjgit-8468fae293fe2f8525e4fb23a98bdec0a6923b52.tar.gz
jgit-8468fae293fe2f8525e4fb23a98bdec0a6923b52.zip
Document empty catch block to silence warning
Change-Id: I643f916e394ca95272b58d0b5826e81cc1092f2f Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java
index 44b8778eea..6ed9bc8f17 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java
@@ -246,6 +246,7 @@ public class ReceivePack extends BaseReceivePack {
try {
postReceive.onPostReceive(this, filterCommands(Result.OK));
} catch (Throwable e) {
+ // empty
}
throw new UnpackException(unpackError);
}