Fix NPE when notes are present

Change-Id: If9200ae4a7f582a5562aecf323ff0430ba154583
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Robin Rosenberg 2012-09-05 07:42:12 +02:00 committed by Matthias Sohn
parent cd23b214bf
commit f590a4c667
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ protected RevWalk createWalk() {
return new ObjectWalk(db);
if (argWalk != null)
return argWalk;
return new RevWalk(db);
return argWalk = new RevWalk(db);
}
protected int walkLoop() throws Exception {