remove unused swap method

This commit is contained in:
emmaus 2018-08-21 15:49:53 +00:00
parent b4fea798c7
commit 20412e605f

View file

@ -2,7 +2,6 @@
{
static class EndianSwap
{
public static short Swap16(short Value) => (short) (((Value >> 8) & 0xff) | (Value << 8));
public static ushort Swap16(ushort Value) => (ushort)(((Value >> 8) & 0xff) | (Value << 8));
public static int Swap32(int Value)