diff --git a/IDE/mintest/minlib/src/System/Runtime.bf b/IDE/mintest/minlib/src/System/Runtime.bf index ca3b7771..1ee8e80c 100644 --- a/IDE/mintest/minlib/src/System/Runtime.bf +++ b/IDE/mintest/minlib/src/System/Runtime.bf @@ -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 diff --git a/IDE/mintest/minlib/src/System/Threading/Thread.bf b/IDE/mintest/minlib/src/System/Threading/Thread.bf index f2815c3d..ec5b365d 100644 --- a/IDE/mintest/minlib/src/System/Threading/Thread.bf +++ b/IDE/mintest/minlib/src/System/Threading/Thread.bf @@ -26,7 +26,7 @@ namespace System.Threading { static Object Thread_Alloc() { - return Thread.[Friend]CreateEmptyThread(); + return Thread.CreateEmptyThread(); } static Object Thread_GetMainThread()