remove CustomerEqualityComparer

This commit is contained in:
ousttrue
2018-04-03 20:24:17 +09:00
parent 8fb64eb6cd
commit c8228ed2f8
3 changed files with 15 additions and 20 deletions

View File

@@ -14,7 +14,7 @@ public class VRMBlendShapeKeyTest
Assert.AreEqual(key, new BlendShapeKey(BlendShapePreset.Blink));
Assert.AreEqual(key, new BlendShapeKey("xxx", BlendShapePreset.Blink));
var dict = new Dictionary<BlendShapeKey, float>(new BlendShapeKey.CustomerEqualityComparer());
var dict = new Dictionary<BlendShapeKey, float>();
dict[new BlendShapeKey("xxx", BlendShapePreset.Blink)] = 1.0f;
Assert.IsTrue(dict.ContainsKey(new BlendShapeKey("blink")));