Make UUIDFlag ctors public.

smh.
This commit is contained in:
wizjany 2021-01-26 16:18:07 -05:00 committed by GitHub
parent e04c654cde
commit 310ce9a662
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -23,11 +23,12 @@ import javax.annotation.Nullable;
import java.util.UUID;
public class UUIDFlag extends Flag<UUID> {
protected UUIDFlag(String name, @Nullable RegionGroup defaultGroup) {
public UUIDFlag(String name, @Nullable RegionGroup defaultGroup) {
super(name, defaultGroup);
}
protected UUIDFlag(String name) {
public UUIDFlag(String name) {
super(name);
}