use author ident instead of commit ident

This commit is contained in:
Sebastian Sdorra
2012-02-04 14:52:31 +01:00
parent ae2b66bd08
commit 23f234d2cf

View File

@@ -145,7 +145,7 @@ public class GitChangesetConverter implements Closeable
}
long date = GitUtil.getCommitTime(commit);
PersonIdent authorIndent = commit.getCommitterIdent();
PersonIdent authorIndent = commit.getAuthorIdent();
Person author = new Person(authorIndent.getName(),
authorIndent.getEmailAddress());
String message = commit.getShortMessage();