Skip to content

Commit 88bf866

Browse files
authored
Merge pull request #3229 from FirelyTeam/copilot/fix-3228
Fix build issue with Fhir.Metrics 1.3.1 nullability annotations
2 parents 59d51ab + 8557211 commit 88bf866

File tree

1 file changed

+1
-1
lines changed
  • src/Hl7.Fhir.Base/ElementModel/Types

1 file changed

+1
-1
lines changed

src/Hl7.Fhir.Base/ElementModel/Types/Ucum.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ internal static bool TryDivide(this Quantity quantity, Quantity divisor, [NotNul
100100
return true;
101101
}
102102

103-
private static Quantity quantityFromTuple((string value, string unit, string codesystem) quantity)
103+
private static Quantity quantityFromTuple((string value, string unit, string? codesystem) quantity)
104104
{
105105
return new Quantity(
106106
decimal.Parse(quantity.value, NumberStyles.Any, CultureInfo.InvariantCulture),

0 commit comments

Comments
 (0)