mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
15 lines
341 B
C#
15 lines
341 B
C#
using System.Text;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
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();
|
|
}
|
|
}
|
|
}
|