aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/IO/SharpCifs/Util/Sharpen/CharSequence.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Server.Implementations/IO/SharpCifs/Util/Sharpen/CharSequence.cs')
-rw-r--r--Emby.Server.Implementations/IO/SharpCifs/Util/Sharpen/CharSequence.cs32
1 files changed, 0 insertions, 32 deletions
diff --git a/Emby.Server.Implementations/IO/SharpCifs/Util/Sharpen/CharSequence.cs b/Emby.Server.Implementations/IO/SharpCifs/Util/Sharpen/CharSequence.cs
deleted file mode 100644
index fa2acf7bd..000000000
--- a/Emby.Server.Implementations/IO/SharpCifs/Util/Sharpen/CharSequence.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-using System.Text;
-
-namespace SharpCifs.Util.Sharpen
-{
- public class CharSequence
- {
- public static implicit operator CharSequence (string str)
- {
- return new StringCharSequence (str);
- }
-
- public static implicit operator CharSequence (StringBuilder str)
- {
- return new StringCharSequence (str.ToString ());
- }
- }
-
- class StringCharSequence: CharSequence
- {
- string _str;
-
- public StringCharSequence (string str)
- {
- this._str = str;
- }
-
- public override string ToString ()
- {
- return _str;
- }
- }
-}