Skip to content

Commit 0f179ff

Browse files
authored
Merge pull request #177 from nuskey8/dummy-input-stream-internal
change: update class visibility of DummyInputStream from public to in…
2 parents 1712b45 + ca60064 commit 0f179ff

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/Lua.Unity/Assets/Lua.Unity/Runtime/UnityStandardIO.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
using Lua.IO;
22
using System;
3-
using System.Buffers.Text;
4-
using System.IO;
53
using System.Text;
64
using System.Threading;
75
using System.Threading.Tasks;
@@ -27,7 +25,7 @@ public UnityStandardIO(ILuaStream input = null)
2725
public ILuaStream Error { get; } = new DebugLogStream(true);
2826
}
2927

30-
public class DummyInputStream : ILuaStream
28+
internal class DummyInputStream : ILuaStream
3129
{
3230
public bool IsOpen { get; } = true;
3331
public LuaFileOpenMode Mode => LuaFileOpenMode.Read;

0 commit comments

Comments
 (0)