mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-12 13:24:09 +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)
|
static Object Object_DynamicCastToTypeId(Object obj, int32 typeId)
|
||||||
{
|
{
|
||||||
#if BF_DYNAMIC_CAST_CHECK
|
#if BF_DYNAMIC_CAST_CHECK
|
||||||
return obj.[Friend]DynamicCastToTypeId(typeId);
|
return obj.DynamicCastToTypeId(typeId);
|
||||||
#else
|
#else
|
||||||
return null;
|
return null;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -26,7 +26,7 @@ namespace System.Threading
|
||||||
{
|
{
|
||||||
static Object Thread_Alloc()
|
static Object Thread_Alloc()
|
||||||
{
|
{
|
||||||
return Thread.[Friend]CreateEmptyThread();
|
return Thread.CreateEmptyThread();
|
||||||
}
|
}
|
||||||
|
|
||||||
static Object Thread_GetMainThread()
|
static Object Thread_GetMainThread()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue