[change] remove warning log when the result of resolving method is null in GenericMethod::ResolveMethod.

main
walon 2025-05-29 17:04:10 +08:00
parent fca130bbfa
commit 8e27e8d41b
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ namespace HybridCLR.Editor.Meta
methodDef = method.ResolveMethodDef();
if (methodDef == null)
{
Debug.LogWarning($"method:{method} ResolveMethodDef() == null");
//Debug.LogWarning($"method:{method} ResolveMethodDef() == null");
return null;
}
if (method is MethodSpec methodSpec)