From aae40a70879bbd67ae0be2a8c81bb82fc40fd776 Mon Sep 17 00:00:00 2001 From: takezoe Date: Tue, 16 Jul 2013 00:11:45 +0900 Subject: [PATCH] Bugfix --- src/main/scala/util/JGitUtil.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/util/JGitUtil.scala b/src/main/scala/util/JGitUtil.scala index 4ade4b049..af71638e2 100644 --- a/src/main/scala/util/JGitUtil.scala +++ b/src/main/scala/util/JGitUtil.scala @@ -318,7 +318,7 @@ object JGitUtil { * @return the commit list */ def getCommitLog(git: Git, from: String, to: String): List[CommitInfo] = - getCommitLogFrom(git, from)(_.getName == from) + getCommitLogFrom(git, to)(_.getName == from) /** * Returns the latest RevCommit of the specified path.