diff --git a/com.code-philosophy.obfuz/Editor/Utils/GenericArgumentContext.cs b/com.code-philosophy.obfuz/Editor/Utils/GenericArgumentContext.cs index 297c91a..a0d9368 100644 --- a/com.code-philosophy.obfuz/Editor/Utils/GenericArgumentContext.cs +++ b/com.code-philosophy.obfuz/Editor/Utils/GenericArgumentContext.cs @@ -7,9 +7,6 @@ using System.Threading.Tasks; namespace Obfuz.Utils { - /// - /// Replaces generic type/method var with its generic argument - /// public sealed class GenericArgumentContext { List typeArgsStack; @@ -21,16 +18,6 @@ namespace Obfuz.Utils this.methodArgsStack = methodArgsStack?.ToList(); } - - - /// - /// Replaces a generic type/method var with its generic argument (if any). If - /// isn't a generic type/method var or if it can't - /// be resolved, it itself is returned. Else the resolved type is returned. - /// - /// Type signature - /// New which is never null unless - /// is null public TypeSig Resolve(TypeSig typeSig) { if (!typeSig.ContainsGenericParameter)