From b35dcbb9f02c27d2d84ee3281a60d654a3fb1259 Mon Sep 17 00:00:00 2001 From: cvium Date: Wed, 16 Jan 2019 20:50:40 +0100 Subject: Remove MediaBrowser.Text since it violates licenses and is overall hacky --- .../TextEncoding/NLangDetect/ProbVector.cs | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 Emby.Server.Implementations/TextEncoding/NLangDetect/ProbVector.cs (limited to 'Emby.Server.Implementations/TextEncoding/NLangDetect/ProbVector.cs') diff --git a/Emby.Server.Implementations/TextEncoding/NLangDetect/ProbVector.cs b/Emby.Server.Implementations/TextEncoding/NLangDetect/ProbVector.cs deleted file mode 100644 index d7afb4113..000000000 --- a/Emby.Server.Implementations/TextEncoding/NLangDetect/ProbVector.cs +++ /dev/null @@ -1,33 +0,0 @@ -using System; -using System.Collections.Generic; - -namespace NLangDetect.Core -{ - public class ProbVector - { - private readonly Dictionary _dict = new Dictionary(); - - public double this[int key] - { - get - { - return _dict.TryGetValue(key, out var value) ? value : 0.0; - } - - set - { - if (Math.Abs(value) < double.Epsilon) - { - if (_dict.ContainsKey(key)) - { - _dict.Remove(key); - } - - return; - } - - _dict[key] = value; - } - } - } -} -- cgit v1.2.3