Skip to content

Commit 2b5a355

Browse files
committed
chore: Remove null
1 parent b8f1226 commit 2b5a355

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

application/CohortManager/src/Functions/Shared/Utilities/MappingUtilities.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public static class MappingUtilities
1818
/// </summary>
1919
public static short ParseStringFlag(string flag)
2020
{
21-
return flag?.ToUpper() switch
21+
return flag.ToUpper() switch
2222
{
2323
"0" => 0,
2424
"1" => 1,

0 commit comments

Comments
 (0)