improve blame api and description to blameline

This commit is contained in:
Sebastian Sdorra
2011-09-22 15:49:28 +02:00
parent 438a2bf77f
commit b903efee62
4 changed files with 40 additions and 9 deletions

View File

@@ -216,7 +216,8 @@ public class HgBlameViewer implements BlameViewer
// todo parse date
Long when = getDate(m.group(3));
blameLine = new BlameLine(authorPerson, when, m.group(2), m.group(5), nr);
blameLine = new BlameLine(nr, m.group(2), when, authorPerson, null,
m.group(5));
}
else if (logger.isWarnEnabled())
{