Use @strings where appropriate

This commit is contained in:
Drew DeVault
2016-10-12 13:36:10 -04:00
committed by Dean Herbert
parent dd86e75ea7
commit deff5ad61e
5 changed files with 46 additions and 46 deletions

View File

@ -22,7 +22,7 @@ namespace osu.Game.Beatmaps.IO
if (reader.Test(storage, path))
return (ArchiveReader)Activator.CreateInstance(reader.Type, storage.GetStream(path));
}
throw new IOException("Unknown file format");
throw new IOException(@"Unknown file format");
}
protected static void AddReader<T>(Func<BasicStorage, string, bool> test) where T : ArchiveReader