special case work around for old THO problem

This commit is contained in:
Grahame Grieve 2023-01-31 16:07:10 +11:00
parent 373abb7dcc
commit 1e6fd76ace
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ public class Identifier extends Type implements ICompositeType {
public static class IdentifierUseEnumFactory implements EnumFactory<IdentifierUse> {
public IdentifierUse fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString) || "?".equals(codeString))
return null;
if ("usual".equals(codeString))
return IdentifierUse.USUAL;