Revert "When marking commits as uninteresting don't care if the tree exists"

This reverts commit 441fdb54ef.
This commit is contained in:
Christian Halstrick 2014-10-10 00:09:44 +02:00
parent 441fdb54ef
commit 6ed6494b8a
1 changed files with 1 additions and 5 deletions

View File

@ -246,11 +246,7 @@ else if (o instanceof RevTree)
public void markUninteresting(RevCommit c) throws MissingObjectException,
IncorrectObjectTypeException, IOException {
super.markUninteresting(c);
try {
markTreeUninteresting(c.getTree());
} catch (MissingObjectException e) {
// we don't care if the tree of the commit does not exist locally
}
markTreeUninteresting(c.getTree());
}
@Override