mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-07 23:02:57 +01:00
merge common implementations and server implementations
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using System.IO;
|
||||
|
||||
namespace SharpCifs.Util.Sharpen
|
||||
{
|
||||
public class BufferedReader : StreamReader
|
||||
{
|
||||
public BufferedReader (InputStreamReader r) : base(r.BaseStream)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user