提交 cef298f4 编写于 作者: M Martin Zikmund

chore: Remove obsolete files

上级 65fd5d36
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Windows.UI.Xaml
{
partial class DispatcherTimer
{
private void StartNative(TimeSpan interval)
{
; // Not supported in unit tests
}
private void StartNative(TimeSpan dueTime, TimeSpan interval)
{
; // Not supported in unit tests
}
private void StopNative()
{
; // Not supported in unit tests
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Windows.UI.Xaml
{
partial class DispatcherTimer
{
private void StartNative(TimeSpan interval)
{
throw new NotSupportedException();
}
private void StartNative(TimeSpan dueTime, TimeSpan interval)
{
throw new NotSupportedException();
}
private void StopNative()
{
throw new NotSupportedException();
}
}
}
......@@ -26,7 +26,7 @@ partial class DispatcherQueueTimer
private void DispatchRaiseTick()
{
#if __WASM__
if (!CoreDispatcher.Main.IsThreadingSupported)
if (!CoreDispatcher.IsThreadingSupported)
{
RaiseTick();
return;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册