You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 4.0.0 build, generator produces duplicate case statements for Quantity in FHIRAbstractBase+Factory.swift. Removed duplicate case before commit to eliminate compiler warning. Adding this Issue to track resolution.
case "ProvenanceEntity":
if let res = ProvenanceEntity(json: json, owner: owner, context: &context) as? T { return res }
case "Quantity":
if let res = Quantity(json: json, owner: owner, context: &context) as? T { return res }
case "Quantity":
if let res = Quantity(json: json, owner: owner, context: &context) as? T { return res }
case "Questionnaire":
if let res = Questionnaire(json: json, owner: owner, context: &context) as? T { return res }
The text was updated successfully, but these errors were encountered:
In 4.0.0 build, generator produces duplicate case statements for Quantity in FHIRAbstractBase+Factory.swift. Removed duplicate case before commit to eliminate compiler warning. Adding this Issue to track resolution.
The text was updated successfully, but these errors were encountered: