Skip to content

Commit

Permalink
Recursive call on accident.
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Oct 24, 2023
1 parent 6fa5e1c commit 8fd3756
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/IKVM.Tools.Importer/StaticCompiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,9 @@ Jeroen Frijters
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.IO.Pipelines;
using System.Reflection.Metadata;
using System.Reflection.PortableExecutable;
using System.Security.Cryptography.Xml;

using IKVM.Reflection;
using IKVM.Runtime;
Expand Down Expand Up @@ -223,7 +220,7 @@ internal void SuppressWarning(CompilerOptions options, Message message, string n

internal void IssueMessage(Message msgId, params string[] values)
{
IssueMessage(msgId, values);
IssueMessage(rootTarget, msgId, values);
}

internal void IssueMessage(CompilerOptions options, Message msgId, params string[] values)
Expand Down

0 comments on commit 8fd3756

Please sign in to comment.