special case work around for old THO problem
This commit is contained in:
parent
373abb7dcc
commit
1e6fd76ace
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue