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