Merges master for release/beta/Z release.

This commit is contained in:
Agnès Zitte 2019-01-30 13:02:16 -05:00
Родитель d04faa874c dbba648c3b
Коммит 4331b63498
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -288,7 +288,9 @@ namespace Uno
} }
using (builder.BlockInvariant("public override int GetHashCode()")) using (builder.BlockInvariant("public override int GetHashCode()"))
{ {
builder.AppendLineInvariant("#pragma warning disable CS0171");
builder.AppendLineInvariant("return _computedHashCode ?? (int)(_computedHashCode = ComputeHashCode());"); builder.AppendLineInvariant("return _computedHashCode ?? (int)(_computedHashCode = ComputeHashCode());");
builder.AppendLineInvariant("#pragma warning restore CS0171");
} }
builder.AppendLine(); builder.AppendLine();