On 02/08/2013 03:32, Artem Ananiev wrote:
I hereby nominate Anton Tarasov (OpenJDK user name: ant) to JDK8
Reviewer.
Anton is currently a Committer in JDK7, 7u, 8, and OpenJFX projects.
He is a member of AWT/Swing and JavaFX groups at Oracle, now working
on JavaFX/Swing and Swing/JavaFX integration.
Web interface for JDK8 mercurial repositories doesn't provide a good
way to find all the changesets for people with short user names (e.g.
"art" or "ant"). That's why I had to use CLI:
hg log |grep '^user.* ant$'
This might be better as it will filter out the merge change-sets:
hg log -M -u ant
(and then add -p to look at the patches).
-Alan.