Skip to content

Commit 1712b45

Browse files
authored
Merge pull request #175 from nuskey8/api-internal
change: update class visibility from public to internal in BomUtility…
2 parents 6ea0a15 + f150f12 commit 1712b45

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Lua/CodeAnalysis/Compilation/BomUtility.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Lua.CodeAnalysis.Compilation;
44

5-
public static class BomUtility
5+
internal static class BomUtility
66
{
77
static ReadOnlySpan<byte> BomUtf8 => [0xEF, 0xBB, 0xBF];
88
static ReadOnlySpan<byte> BomUtf16Little => [0xFF, 0xFE];

src/Lua/Standard/Internal/LuaPlatformUtility.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace Lua.Standard.Internal;
22

3-
public class LuaPlatformUtility
3+
internal class LuaPlatformUtility
44
{
55
public static bool IsSandBox => SupportStdio;
66
public static bool SupportStdio => _supportStdioTryLazy.Value;

0 commit comments

Comments
 (0)