aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/TextEncoding/NLangDetect/ProbVector.cs
diff options
context:
space:
mode:
authorcvium <clausvium@gmail.com>2019-01-16 20:50:40 +0100
committerClaus Vium <clausvium@gmail.com>2019-01-20 06:30:50 +0100
commitb35dcbb9f02c27d2d84ee3281a60d654a3fb1259 (patch)
tree12049e17ac9e6cdbe2e7fec5ec7a886cff8a8c6d /Emby.Server.Implementations/TextEncoding/NLangDetect/ProbVector.cs
parent3a5e3ade01ab4b4fccca03ba2da969f03d5564f1 (diff)
Remove MediaBrowser.Text since it violates licenses and is overall hacky
Diffstat (limited to 'Emby.Server.Implementations/TextEncoding/NLangDetect/ProbVector.cs')
-rw-r--r--Emby.Server.Implementations/TextEncoding/NLangDetect/ProbVector.cs33
1 files changed, 0 insertions, 33 deletions
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<int, double> _dict = new Dictionary<int, double>();
-
- 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;
- }
- }
- }
-}