Markus Fömpe
2013-01-04 9c47959ece677eaaceb6f3d2eb42b0466f60acdc
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));
         }