Merge pull request #519 from nsacyber/issue-ignorehexcase

Updated ComponentClass TypeId equals
This commit is contained in:
iadgovuser26 2023-06-02 16:10:49 -04:00 committed by GitHub
commit 7445f2fb23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -252,7 +252,7 @@ public class ComponentClass {
for (Member member : components) {
typeID = verifyComponentValue(member.getName());
if (component.equals(typeID)) {
if (component.equalsIgnoreCase(typeID)) {
componentStr = member.getValue().asString();
}
}