Browse Source

Merge "Fix jgit rev-list --objects master"

tags/v1.1.0.201109011030-rc2
Shawn O. Pearce 12 years ago
parent
commit
895af1480d

+ 5
- 3
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/RevWalkTextBuiltin.java View File

@@ -199,9 +199,11 @@ abstract class RevWalkTextBuiltin extends TextBuiltin {
}

protected RevWalk createWalk() {
if (argWalk == null)
argWalk = objects ? new ObjectWalk(db) : new RevWalk(db);
return argWalk;
if (objects)
return new ObjectWalk(db);
if (argWalk != null)
return argWalk;
return new RevWalk(db);
}

protected int walkLoop() throws Exception {

Loading…
Cancel
Save