aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/IO/SharpCifs/Util/Sharpen/CharBuffer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Server.Implementations/IO/SharpCifs/Util/Sharpen/CharBuffer.cs')
-rw-r--r--Emby.Server.Implementations/IO/SharpCifs/Util/Sharpen/CharBuffer.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/Emby.Server.Implementations/IO/SharpCifs/Util/Sharpen/CharBuffer.cs b/Emby.Server.Implementations/IO/SharpCifs/Util/Sharpen/CharBuffer.cs
deleted file mode 100644
index 76ca2dc95..000000000
--- a/Emby.Server.Implementations/IO/SharpCifs/Util/Sharpen/CharBuffer.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-namespace SharpCifs.Util.Sharpen
-{
- internal class CharBuffer : CharSequence
- {
- internal string Wrapped;
-
- public override string ToString ()
- {
- return Wrapped;
- }
-
- public static CharBuffer Wrap (string str)
- {
- CharBuffer buffer = new CharBuffer ();
- buffer.Wrapped = str;
- return buffer;
- }
- }
-}