|
|
|
@ -236,6 +236,7 @@ public class IpLogGenerator {
|
|
|
|
|
SimpleDateFormat dt = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); |
|
|
|
|
File list = new File(repo.getDirectory(), "gerrit_committers"); |
|
|
|
|
BufferedReader br = new BufferedReader(new FileReader(list)); |
|
|
|
|
try { |
|
|
|
|
String line; |
|
|
|
|
|
|
|
|
|
while ((line = br.readLine()) != null) { |
|
|
|
@ -267,6 +268,9 @@ public class IpLogGenerator {
|
|
|
|
|
who.addActiveRange(new ActiveRange(begin, end)); |
|
|
|
|
committersByEmail.put(email, who); |
|
|
|
|
} |
|
|
|
|
} finally { |
|
|
|
|
br.close(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private Date parseDate(SimpleDateFormat dt, String value) |
|
|
|
|