Skip to content

Commit

Permalink
Do not emit source server warning on Unix
Browse files Browse the repository at this point in the history
Fixes #356
  • Loading branch information
KirillOsenkov committed Mar 31, 2024
1 parent 0c18d90 commit b954ff1
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions ILRepack/Steps/SourceServerData/SourceServerDataRepackStep.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,8 @@ public void Dispose()
/// </summary>
internal class NullSourceServerStep : ISourceServerDataRepackStep
{
private ILogger _logger;

public NullSourceServerStep(ILogger logger)
{
_logger = logger;
}

public void Perform()
Expand All @@ -93,8 +90,6 @@ public void Perform()

public void Write()
{
_logger.Warn("Did not write source server data to output assembly. " +
"Source server data is only writeable on Windows");
}

public void Dispose()
Expand Down

0 comments on commit b954ff1

Please sign in to comment.