Remove bad words on code comments

This commit is contained in:
Joehu
2019-06-19 21:33:58 -07:00
parent 471c5b7386
commit ca919f02e6
2 changed files with 2 additions and 2 deletions

View File

@ -363,7 +363,7 @@ namespace osu.Game.Beatmaps
foreach (var name in reader.Filenames.Where(f => f.EndsWith(".osu")))
{
using (var raw = reader.GetStream(name))
using (var ms = new MemoryStream()) //we need a memory stream so we can seek and shit
using (var ms = new MemoryStream()) //we need a memory stream so we can seek
using (var sr = new StreamReader(ms))
{
raw.CopyTo(ms);