James Moger
2012-12-07 ac7e9a61460554aa0183c677bb15d1f473519f55
src/com/gitblit/models/Activity.java
@@ -28,6 +28,7 @@
import org.eclipse.jgit.lib.PersonIdent;
import org.eclipse.jgit.revwalk.RevCommit;
import com.gitblit.utils.StringUtils;
import com.gitblit.utils.TimeUtils;
/**
@@ -93,8 +94,7 @@
         }
         repositoryMetrics.get(repository).count++;
         String author = commit.getAuthorIdent().getEmailAddress()
               .toLowerCase();
         String author = StringUtils.removeNewlines(commit.getAuthorIdent().getEmailAddress()).toLowerCase();
         if (!authorMetrics.containsKey(author)) {
            authorMetrics.put(author, new Metric(author));
         }