Example usage for org.eclipse.jgit.lib ObjectIdOwnerMap ObjectIdOwnerMap

List of usage examples for org.eclipse.jgit.lib ObjectIdOwnerMap ObjectIdOwnerMap

Introduction

In this page you can find the example usage for org.eclipse.jgit.lib ObjectIdOwnerMap ObjectIdOwnerMap.

Prototype

@SuppressWarnings("unchecked")
public ObjectIdOwnerMap() 

Source Link

Document

Create an empty map.

Usage

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<>();
}