in src/main/java/com/googlesource/gerrit/plugins/ratelimiter/UserResolver.java [34:38]
Optional<IdentifiedUser> getIdentifiedUser(String key) {
return isNumeric(key)
? Optional.ofNullable(userFactory.create(Account.id(Integer.parseInt(key))))
: Optional.empty();
}