[SKData] Remove unnecessary, and potentially dangerous method, see issue #6

This commit is contained in:
Miguel de Icaza 2016-03-05 22:59:35 -05:00
Родитель e6559d6b62
Коммит 523f29de86
1 изменённых файлов: 0 добавлений и 5 удалений

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

@ -55,11 +55,6 @@ namespace SkiaSharp
return new SKData (SkiaApi.sk_data_new_from_malloc (bytes, (IntPtr) length));
}
public static SKData FromMallocMemory (byte[] bytes)
{
return new SKData (SkiaApi.sk_data_new_from_malloc (bytes, (IntPtr)bytes.Length));
}
public SKData Subset (ulong offset, ulong length)
{
if (Marshal.SizeOf (typeof(IntPtr)) == 4) {