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:
parent
b89e036a6f
commit
83ed41e81a
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -26,7 +26,7 @@ namespace System.Threading
|
|||
{
|
||||
static Object Thread_Alloc()
|
||||
{
|
||||
return Thread.[Friend]CreateEmptyThread();
|
||||
return Thread.CreateEmptyThread();
|
||||
}
|
||||
|
||||
static Object Thread_GetMainThread()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue