Skip to content

Commit 4ba14d4

Browse files
committed
fix build errors
1 parent ebc7e4d commit 4ba14d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Http/Owin/src/DictionaryStringArrayWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public bool MoveNext()
108108

109109
public KeyValuePair<string, string[]> Current => _current;
110110

111-
object? IEnumerator.Current => Current;
111+
object IEnumerator.Current => Current;
112112

113113
void IEnumerator.Reset() => throw new NotImplementedException();
114114
}

src/Http/Owin/src/DictionaryStringValuesWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public bool MoveNext()
153153

154154
public KeyValuePair<string, StringValues> Current => _current;
155155

156-
object? IEnumerator.Current => Current;
156+
object IEnumerator.Current => Current;
157157

158158
void IEnumerator.Reset() => throw new NotImplementedException();
159159
}

0 commit comments

Comments
 (0)