mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-26 21:57:05 -05:00
12 lines
206 B
C#
12 lines
206 B
C#
using System.IO;
|
|
|
|
namespace SharpCifs.Util.Sharpen
|
|
{
|
|
public class BufferedReader : StreamReader
|
|
{
|
|
public BufferedReader(InputStreamReader r) : base(r.BaseStream)
|
|
{
|
|
}
|
|
}
|
|
}
|