remove unused function for copy bytes from buffer

This commit is contained in:
Federico Barresi
2019-12-27 10:09:04 +01:00
parent 590af4b245
commit c6611a74c3

View File

@@ -20,13 +20,6 @@ namespace Sharp7
return (byte)(((value / 10) << 4) | (value % 10));
}
private static byte[] CopyFrom(byte[] buffer, int pos, int size)
{
byte[] result = new byte[size];
Array.Copy(buffer, pos, result, 0, size);
return result;
}
public static int DataSizeByte(this int wordLength)
{
switch (wordLength)