Created
November 6, 2020 10:11
-
-
Save mtbarr/a8f969a34d3e3065c5939f78dcb38f1e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.github.ninjaservices.factions.faction.relation; | |
import com.google.common.collect.Maps; | |
import java.util.Map; | |
import java.util.UUID; | |
public class FactionRelationList { | |
private final Map<UUID , FactionRelation> relationMap; | |
public FactionRelationList() { | |
relationMap = Maps.newConcurrentMap(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment