Skip to content

Commit 60cac9d

Browse files
Update src/Middleware/OutputCaching/src/OutputCacheEntryFormatter.cs
Co-authored-by: Brennan <[email protected]>
1 parent efcb0a3 commit 60cac9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Middleware/OutputCaching/src/OutputCacheEntryFormatter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ private static void Serialize(IBufferWriter<byte> output, OutputCacheEntry entry
157157
// For each header value:
158158
// data byte length: 7-bit encoded int
159159
// UTF-8 encoded byte[]
160-
for (int i = 0; i < count; i++)
160+
for (var i = 0; i < count; i++)
161161
{
162162
WriteCommonHeader(ref writer, header.Value[i]);
163163
}

0 commit comments

Comments
 (0)