1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Removed unnecessary [Friend]s

This commit is contained in:
Brian Fiete 2020-08-16 15:55:30 -07:00
parent b89e036a6f
commit 83ed41e81a
2 changed files with 2 additions and 2 deletions

View file

@ -166,7 +166,7 @@ namespace System
static Object Object_DynamicCastToTypeId(Object obj, int32 typeId)
{
#if BF_DYNAMIC_CAST_CHECK
return obj.[Friend]DynamicCastToTypeId(typeId);
return obj.DynamicCastToTypeId(typeId);
#else
return null;
#endif

View file

@ -26,7 +26,7 @@ namespace System.Threading
{
static Object Thread_Alloc()
{
return Thread.[Friend]CreateEmptyThread();
return Thread.CreateEmptyThread();
}
static Object Thread_GetMainThread()