Skip to content
代码片段 群组 项目
未验证 提交 5779db12 编辑于 作者: Dan Moseley's avatar Dan Moseley 提交者: GitHub
浏览文件

remove long gone owners (#68755)

上级 01dc8294
No related branches found
No related tags found
无相关合并请求
......@@ -48,7 +48,6 @@ namespace Microsoft.CodeAnalysis.BuildTasks
///
/// <text> : warning [num]: <msg>
/// </remarks>
/// <owner>JomoF</owner>
internal static class CanonicalError
{
// Defines the main pattern for matching messages.
......@@ -141,7 +140,6 @@ internal static class CanonicalError
/// <summary>
/// Represents the parts of a decomposed canonical message.
/// </summary>
/// <owner>JomoF</owner>
internal sealed class Parts
{
/// <summary>
......@@ -237,7 +235,6 @@ internal Parts()
/// </summary>
/// <param name="value"></param>
/// <returns>'value' converted to int or 0 if it can't be parsed or is negative</returns>
/// <owner>LukaszG</owner>
private static int ConvertToIntWithDefault(string value)
{
int result;
......@@ -255,7 +252,6 @@ private static int ConvertToIntWithDefault(string value)
/// Decompose an error or warning message into constituent parts. If the message isn't in the canonical form, return null.
/// </summary>
/// <remarks>This method is thread-safe, because the Regex class is thread-safe (per MSDN).</remarks>
/// <owner>JomoF</owner>
/// <param name="message"></param>
/// <returns>Decomposed canonical message, or null.</returns>
internal static Parts? Parse(string message)
......
......@@ -459,7 +459,6 @@ internal static void AddReferencesToCommandLine(
/// thing for csc.exe, the IDE compiler cannot support it. In this situation
/// the return value will also be false.
/// </summary>
/// <owner>RGoel</owner>
private bool InitializeHostCompiler(ICscHostObject cscHostObject)
{
bool success;
......@@ -659,7 +658,6 @@ private bool InitializeHostCompiler(ICscHostObject cscHostObject)
/// NoActionReturnSuccess Host compiler was already up-to-date, and we're done.
/// NoActionReturnFailure Bad parameters were passed into the task.
/// </summary>
/// <owner>RGoel</owner>
protected override HostObjectInitializationStatus InitializeHostObject()
{
if (HostObject != null)
......@@ -746,7 +744,6 @@ protected override HostObjectInitializationStatus InitializeHostObject()
/// This method will get called during Execute() if a host object has been passed into the Csc
/// task. Returns true if the compilation succeeded, otherwise false.
/// </summary>
/// <owner>RGoel</owner>
protected override bool CallHostObjectToExecute()
{
Debug.Assert(HostObject != null, "We should not be here if the host object has not been set.");
......
......@@ -1142,7 +1142,6 @@ protected bool HostCompilerSupportsAllParameters
/// support a particular parameter or variation on a parameter. So we log a comment,
/// and set our state so we know not to call the host object to do the actual compilation.
/// </summary>
/// <owner>RGoel</owner>
protected void CheckHostObjectSupport
(
string parameterName,
......@@ -1172,7 +1171,6 @@ internal void InitializeHostObjectSupportForNewSwitches(ITaskHost hostObject, re
/// <summary>
/// Checks to see whether all of the passed-in references exist on disk before we launch the compiler.
/// </summary>
/// <owner>RGoel</owner>
protected bool CheckAllReferencesExistOnDisk()
{
if (null == References)
......
......@@ -801,7 +801,6 @@ internal static string? GetDefineConstantsSwitch
/// thing for csc.exe, the IDE compiler cannot support it. In this situation
/// the return value will also be false.
/// </summary>
/// <owner>RGoel</owner>
private bool InitializeHostCompiler(IVbcHostObject vbcHostObject)
{
this.HostCompilerSupportsAllParameters = this.UseHostCompilerIfAvailable;
......@@ -1012,7 +1011,6 @@ private static bool DeferToICompilerOptionsHostObject(string? langVersion, IVbcH
/// NoActionReturnSuccess Host compiler was already up-to-date, and we're done.
/// NoActionReturnFailure Bad parameters were passed into the task.
/// </summary>
/// <owner>RGoel</owner>
protected override HostObjectInitializationStatus InitializeHostObject()
{
if (this.HostObject != null)
......@@ -1099,7 +1097,6 @@ protected override HostObjectInitializationStatus InitializeHostObject()
/// task. Returns true if an appropriate host object was found, it was called to do the compile,
/// and the compile succeeded. Otherwise, we return false.
/// </summary>
/// <owner>RGoel</owner>
protected override bool CallHostObjectToExecute()
{
Debug.Assert(this.HostObject != null, "We should not be here if the host object has not been set.");
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册