Add spaces to comments

This commit is contained in:
alex
2020-05-04 18:31:11 -07:00
parent c987af988c
commit 0e2ccac33b
48 changed files with 92 additions and 92 deletions

View File

@ -381,7 +381,7 @@ namespace osu.Game.Beatmaps
foreach (var file in files.Where(f => f.Filename.EndsWith(".osu")))
{
using (var raw = Files.Store.GetStream(file.FileInfo.StoragePath))
using (var ms = new MemoryStream()) //we need a memory stream so we can seek
using (var ms = new MemoryStream()) // we need a memory stream so we can seek
using (var sr = new LineBufferedReader(ms))
{
raw.CopyTo(ms);