From 4cf736fdf3867490d04c65a04ca1431f7c1ecafb Mon Sep 17 00:00:00 2001 From: Robin Rosenberg Date: Tue, 24 Jun 2008 23:36:29 +0200 Subject: [PATCH] LsTree: Do not use the default first empty tree in the walker In f0ef5e1ef09d346432fead17bc82d78b7cfbd621 an empty tree was added to all TreeWalkers. Signed-off-by: Robin Rosenberg Signed-off-by: Shawn O. Pearce --- org.spearce.jgit/src/org/spearce/jgit/pgm/LsTree.java | 1 + 1 file changed, 1 insertion(+) diff --git a/org.spearce.jgit/src/org/spearce/jgit/pgm/LsTree.java b/org.spearce.jgit/src/org/spearce/jgit/pgm/LsTree.java index 1bc7bbd6..05ec8c3a 100644 --- a/org.spearce.jgit/src/org/spearce/jgit/pgm/LsTree.java +++ b/org.spearce.jgit/src/org/spearce/jgit/pgm/LsTree.java @@ -65,6 +65,7 @@ class LsTree extends TextBuiltin { else if (argi + 1 < args.length) throw die("too many arguments"); + walk.reset(); // drop the first empty tree, which we do not need here final String n = args[argi]; if (is_WorkDir(n)) walk.addTree(new FileTreeIterator(new File(n))); -- 2.11.4.GIT