Use "this." in a few places to match the style of the project

This commit is contained in:
stephentoub 2014-11-11 15:42:20 -05:00
Родитель 31e929ce15
Коммит 33a31df749
7 изменённых файлов: 7 добавлений и 7 удалений

Просмотреть файл

@ -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;
}