Browse Source

pgm: Handle exceptions in DiffTree command

This avoids we show a stacktrace on the console by default when this
type of exception is thrown during the run method is executed.

Change-Id: I087b3e510682c68cae74c069b10050c7acb48a29
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
stable-5.4
Matthias Sohn 6 years ago
parent
commit
c2fb5873b4
  1. 5
      org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/DiffTree.java

5
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/DiffTree.java

@ -44,6 +44,7 @@
package org.eclipse.jgit.pgm; package org.eclipse.jgit.pgm;
import java.io.IOException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
@ -74,7 +75,7 @@ class DiffTree extends TextBuiltin {
/** {@inheritDoc} */ /** {@inheritDoc} */
@Override @Override
protected void run() throws Exception { protected void run() {
try (TreeWalk walk = new TreeWalk(db)) { try (TreeWalk walk = new TreeWalk(db)) {
walk.setRecursive(recursive); walk.setRecursive(recursive);
for (AbstractTreeIterator i : trees) for (AbstractTreeIterator i : trees)
@ -116,6 +117,8 @@ class DiffTree extends TextBuiltin {
outw.print(walk.getPathString()); outw.print(walk.getPathString());
outw.println(); outw.println();
} }
} catch (IOException e) {
throw die(e.getMessage(), e);
} }
} }
} }

Loading…
Cancel
Save