mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-02 06:46:31 +01:00
update sharpcifs
This commit is contained in:
@@ -4,22 +4,22 @@ using System.IO;
|
||||
namespace SharpCifs.Util.Sharpen
|
||||
{
|
||||
internal class ObjectInputStream : InputStream
|
||||
{
|
||||
private BinaryReader _reader;
|
||||
{
|
||||
private BinaryReader _reader;
|
||||
|
||||
public ObjectInputStream(InputStream s)
|
||||
{
|
||||
_reader = new BinaryReader(s.GetWrappedStream());
|
||||
}
|
||||
public ObjectInputStream (InputStream s)
|
||||
{
|
||||
_reader = new BinaryReader (s.GetWrappedStream ());
|
||||
}
|
||||
|
||||
public int ReadInt()
|
||||
{
|
||||
return _reader.ReadInt32();
|
||||
}
|
||||
public int ReadInt ()
|
||||
{
|
||||
return _reader.ReadInt32 ();
|
||||
}
|
||||
|
||||
public object ReadObject()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
public object ReadObject ()
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user