Add missing access modifiers.

This commit is contained in:
Dean Herbert
2017-03-09 13:55:29 +09:00
parent 9772f2a042
commit dc5ac6e88f
5 changed files with 9 additions and 9 deletions

View File

@ -17,7 +17,7 @@ namespace osu.Game.IO.Legacy
/// handle null strings and simplify use with ISerializable. </summary>
public class SerializationReader : BinaryReader
{
Stream stream;
private Stream stream;
public SerializationReader(Stream s)
: base(s, Encoding.UTF8)