opt createCollectionIndicators for wrong id and opt TagDefineType (#780)

This commit is contained in:
daikon
2024-03-05 19:52:21 +08:00
committed by GitHub
parent b8ecfc6a99
commit c97f567cd8
6 changed files with 15 additions and 11 deletions

View File

@@ -4,5 +4,5 @@ public enum TagDefineType {
FIELD,
DIMENSION,
Tag
TAG
}

View File

@@ -21,7 +21,7 @@ public enum TagType {
}
public static TagType getType(TagDefineType tagDefineType) {
return Objects.nonNull(tagDefineType) && TagDefineType.Tag.equals(tagDefineType) ? TagType.DERIVED
return Objects.nonNull(tagDefineType) && TagDefineType.TAG.equals(tagDefineType) ? TagType.DERIVED
: TagType.ATOMIC;
}
}