mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
16 lines
346 B
C#
16 lines
346 B
C#
using System.Text;
|
|
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.Core.Plugs.System.Text
|
|
{
|
|
[Plug(Target = typeof(DecoderFallback))]
|
|
public static class DecoderFallbackImpl
|
|
{
|
|
// See note in EncoderFallbackImpl
|
|
public static object get_InternalSyncObject()
|
|
{
|
|
return new object();
|
|
}
|
|
}
|
|
}
|