mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
16 lines
398 B
C#
16 lines
398 B
C#
using System.Text;
|
|
|
|
using Cosmos.IL2CPU.Plugs;
|
|
|
|
namespace Cosmos.Core.Plugs.System.Text
|
|
{
|
|
[Plug(Target = typeof(EncoderFallback))]
|
|
public static class EncoderFallbackImpl
|
|
{
|
|
// Encoders use this, but we plug their methods anwyays so we just fill empty for now.
|
|
public static object get_InternalSyncObject()
|
|
{
|
|
return new object();
|
|
}
|
|
}
|
|
}
|