Skip to content

Commit

Permalink
Auto-format source code
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions Autoformatter committed Jun 28, 2023
1 parent b1016cc commit 36478cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions msbuild/Xamarin.MacDev.Tasks/Tasks/AOTUpdateTimestamps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ bool IsUpToDate (FileInfo input, FileInfo output)
return input.LastWriteTimeUtc <= output.LastWriteTimeUtc;
}

void MarkAssembly (Info[] infos, Info info)
void MarkAssembly (Info [] infos, Info info)
{
Log.LogMessage (MessageImportance.Low, $"MarkAssembly ({info.Assembly.ItemSpec}) Marked: {info.Marked}");
if (info.Marked)
Expand All @@ -155,7 +155,7 @@ void MarkAssembly (Info[] infos, Info info)
Log.LogMessage (MessageImportance.Low, $"MarkAssembly ({info.Assembly.ItemSpec}) Marking {infos [i].Assembly.ItemSpec}");
MarkAssembly (infos, infos [i]);
} else {
Log.LogMessage (MessageImportance.Low, $"The assembly '{infos[i].Assembly.ItemSpec}' does not reference '{info.Assembly.ItemSpec}'. References: {string.Join (", ", infos[i].AssemblyReferences)}");
Log.LogMessage (MessageImportance.Low, $"The assembly '{infos [i].Assembly.ItemSpec}' does not reference '{info.Assembly.ItemSpec}'. References: {string.Join (", ", infos [i].AssemblyReferences)}");
}
}
}
Expand Down

0 comments on commit 36478cb

Please sign in to comment.