remove not used

This commit is contained in:
ousttrue 2021-04-26 13:43:07 +09:00
parent 948b3d9278
commit 438ccc62db

View File

@ -1,23 +0,0 @@
using System.Collections.Generic;
namespace UniVRM10
{
public static class DictionaryExtensions
{
public static U GetOrDefault<T, U>(this Dictionary<T, U> d, T key)
{
if(key == null)
{
return default;
}
if(d.TryGetValue(key, out U value))
{
return value;;
}
else{
return default;
}
}
}
}