jellyfin/Emby.Server.Implementations/IO/SharpCifs/Util/Sharpen/FileWriter.cs

19 lines
372 B
C#
Raw Normal View History

2017-04-02 00:36:06 +00:00
using System.IO;
namespace SharpCifs.Util.Sharpen
{
//resharper said, nobody using this. i believe it.
//internal class FileWriter : StreamWriter
//{
// public FileWriter (FilePath path) : base(path.GetPath ())
// {
// }
// public FileWriter Append (string sequence)
// {
// Write (sequence);
// return this;
// }
//}
}