FileStream should be closed when Close() is called, duh\!

This commit is contained in:
Michael Becker 2014-04-17 00:54:15 -04:00
parent 61cfc745ab
commit 303931bd8e

View File

@ -108,6 +108,7 @@ namespace UniversalEditor.Accessors
public override void Close()
{
mvarFileStream.Close();
}
}
}