added revision to BlameLine

This commit is contained in:
Sebastian Sdorra
2011-09-14 11:58:58 +02:00
parent 77951efb71
commit f4367f2684
10 changed files with 51 additions and 18 deletions

View File

@@ -118,11 +118,11 @@ public class PlainBlameProvider
for (BlameLine line : bpr.getBlameLines())
{
String name = line.getName();
String revision = line.getRevision();
if (Util.isNotEmpty(name))
if (Util.isNotEmpty(revision))
{
writer.append(name).append(" ");
writer.append(revision).append(" ");
}
writer.println(line.getCode());