Skip to content
This repository was archived by the owner on Nov 22, 2018. It is now read-only.

Commit 87aad42

Browse files
committed
remove extra comma
1 parent d4ee8e5 commit 87aad42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.AspNetCore.ResponseCaching/Internal/MemoryResponseCache.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public Task<IResponseCacheEntry> GetAsync(string key)
3434
Created = memoryCachedResponse.Created,
3535
StatusCode = memoryCachedResponse.StatusCode,
3636
Headers = memoryCachedResponse.Headers,
37-
Body = new SegmentReadStream(memoryCachedResponse.BodySegments, memoryCachedResponse.BodyLength),
37+
Body = new SegmentReadStream(memoryCachedResponse.BodySegments, memoryCachedResponse.BodyLength)
3838
});
3939
}
4040
else

0 commit comments

Comments
 (0)