Skip to content

Commit 44b2d62

Browse files
remove nullability annotation for Adjustment rule
1 parent 685043b commit 44b2d62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

external/corefx-bugfix/src/Common/src/CoreLib/System/TimeZoneInfo.Unix.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1011,7 +1011,7 @@ private static void TZif_GenerateAdjustmentRule(ref int index, TimeSpan timeZone
10111011

10121012
// pulled in from this fix
10131013
// https://github.com/dotnet/runtime/pull/458/
1014-
AdjustmentRule? r = !string.IsNullOrEmpty(futureTransitionsPosixFormat) ?
1014+
AdjustmentRule r = !string.IsNullOrEmpty(futureTransitionsPosixFormat) ?
10151015
TZif_CreateAdjustmentRuleForPosixFormat(futureTransitionsPosixFormat, startTransitionDate, timeZoneBaseUtcOffset) :
10161016
null;
10171017
if (r == null)

0 commit comments

Comments
 (0)