浏览代码

[lua] hide ProcessInput/Output from the API

Jens Fischer 7 年之前
父节点
当前提交
0b44d52717
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      std/lua/_std/sys/io/Process.hx

+ 2 - 2
std/lua/_std/sys/io/Process.hx

@@ -122,7 +122,7 @@ class Process {
 	}
 }
 
-class ProcessInput extends haxe.io.Input {
+private class ProcessInput extends haxe.io.Input {
 	var b : Pipe;
 	var buf : String;
 	var idx : Int;
@@ -170,7 +170,7 @@ class ProcessInput extends haxe.io.Input {
 
 }
 
-class ProcessOutput extends haxe.io.Output {
+private class ProcessOutput extends haxe.io.Output {
 	var b : Pipe;
 
 	public function new(pipe:Pipe) {