Skip to content

Commit

Permalink
(#161) CodeGen: remove a comment since the issue is resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
ForNeVeR committed Aug 6, 2022
1 parent 1dd5b03 commit 24edd7f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Cesium.CodeGen/Extensions/TypeSystemEx.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System.Runtime.Versioning;
using Cesium.CodeGen.Contexts;
using Cesium.CodeGen.Ir;
using Cesium.CodeGen.Ir.Types;
using Mono.Cecil;
using System.Runtime.Versioning;

namespace Cesium.CodeGen.Extensions;

Expand All @@ -21,7 +21,6 @@ public static MethodReference MethodLookup(
var typeName = components[0];
var methodName = components[1];

// TODO[#161]: Method search should be implemented in Cecil, to not load the assemblies into the current process.
var candidates = FindMethods(context.AssemblyContext.ImportAssemblies, typeName, methodName).ToList();
var similarMethods = new List<(MethodDefinition, string)>();
foreach (var candidate in candidates)
Expand Down

0 comments on commit 24edd7f

Please sign in to comment.