List of usage examples for org.eclipse.jgit.lib ObjectIdOwnerMap ObjectIdOwnerMap
@SuppressWarnings("unchecked") public ObjectIdOwnerMap()
From source file:com.google.gerrit.server.git.TagSet.java
License:Apache License
TagSet(Project.NameKey projectName) {
this.projectName = projectName;
this.refs = new HashMap<>();
this.tags = new ObjectIdOwnerMap<>();
}