Package com.google.gerrit.common.data

Examples of com.google.gerrit.common.data.GroupInfoCache


  public GroupInfoCache create() {
    final List<GroupInfo> r = new ArrayList<GroupInfo>(out.size());
    for (final AccountGroup a : out.values()) {
      r.add(new GroupInfo(a));
    }
    return new GroupInfoCache(r);
  }
View Full Code Here

TOP

Related Classes of com.google.gerrit.common.data.GroupInfoCache

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.