зеркало из https://github.com/App-vNext/corefx.git
Use "this." in a few places to match the style of the project
This commit is contained in:
Родитель
31e929ce15
Коммит
33a31df749
|
@ -345,7 +345,7 @@ namespace System.Collections.Immutable
|
|||
Requires.Range(arrayIndex >= 0, "arrayIndex");
|
||||
Requires.Range(array.Length >= arrayIndex + this.Count, "arrayIndex");
|
||||
|
||||
if (count == 0)
|
||||
if (this.count == 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -780,7 +780,7 @@ namespace System.Collections.Immutable
|
|||
Requires.Range(arrayIndex >= 0, "arrayIndex");
|
||||
Requires.Range(array.Length >= arrayIndex + this.Count, "arrayIndex");
|
||||
|
||||
if (count == 0)
|
||||
if (this.count == 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -562,7 +562,7 @@ namespace System.Collections.Immutable
|
|||
Requires.Range(arrayIndex >= 0, "arrayIndex");
|
||||
Requires.Range(array.Length >= arrayIndex + this.Count, "arrayIndex");
|
||||
|
||||
if (count == 0)
|
||||
if (this.count == 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -2590,7 +2590,7 @@ namespace System.Collections.Immutable
|
|||
Requires.Range(arrayIndex >= 0, "arrayIndex");
|
||||
Requires.Range(array.Length >= arrayIndex + this.Count, "arrayIndex");
|
||||
|
||||
if (count == 0)
|
||||
if (this.count == 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -1381,7 +1381,7 @@ namespace System.Collections.Immutable
|
|||
Requires.Range(arrayIndex >= 0, "arrayIndex");
|
||||
Requires.Range(array.Length >= arrayIndex + dictionarySize, "arrayIndex");
|
||||
|
||||
if (IsEmpty)
|
||||
if (this.IsEmpty)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -1689,7 +1689,7 @@ namespace System.Collections.Immutable
|
|||
Requires.Range(arrayIndex >= 0, "arrayIndex");
|
||||
Requires.Range(array.Length >= arrayIndex + this.Count, "arrayIndex");
|
||||
|
||||
if (IsEmpty)
|
||||
if (this.IsEmpty)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -139,7 +139,7 @@ namespace System.Collections.Immutable
|
|||
Requires.Range(arrayIndex >= 0, "arrayIndex");
|
||||
Requires.Range(array.Length >= arrayIndex + this.Count, "arrayIndex");
|
||||
|
||||
if (Count == 0)
|
||||
if (this.Count == 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче