Removed the use of the debug SaveBitmap

This commit is contained in:
Matthew Leibowitz 2018-11-15 06:28:27 +02:00
Родитель ca5eb3a70a
Коммит 6fb447c202
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 3650EBE4AA155AF9
2 изменённых файлов: 1 добавлений и 3 удалений

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

@ -69,9 +69,9 @@ csharp_style_var_elsewhere = true:suggestion
# Prefer special method types to have a block body # Prefer special method types to have a block body
csharp_style_expression_bodied_constructors = false:suggestion csharp_style_expression_bodied_constructors = false:suggestion
csharp_style_expression_bodied_operators = false:suggestion
# Prefer methods to have a block body # Prefer methods to have a block body
csharp_style_expression_bodied_operators = true:suggestion
csharp_style_expression_bodied_methods = true:suggestion csharp_style_expression_bodied_methods = true:suggestion
# Prefer property-like constructs to have an expression-body # Prefer property-like constructs to have an expression-body

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

@ -75,8 +75,6 @@ namespace SkiaSharp.Tests
} }
glyphsPixels = bmp.Bytes; glyphsPixels = bmp.Bytes;
SaveBitmap(bmp);
} }
Assert.Equal(textPixels, glyphsPixels); Assert.Equal(textPixels, glyphsPixels);