Cleaned up code after my massive bug fix

This commit is contained in:
Bob Da Ross
2021-05-10 16:12:30 -05:00
parent b0d7c033b6
commit f3d37ae0d2
10 changed files with 825 additions and 1002 deletions

View File

@@ -25,6 +25,7 @@ namespace SeamlessClientPlugin.Utilities
}
}
public static T Deserialize<T>(byte[] data)
{
if (data == null)
@@ -36,7 +37,6 @@ namespace SeamlessClientPlugin.Utilities
}
}
public static dynamic CastToReflected(this object o, Type type)
{
return Convert.ChangeType(o, type);