Nicolas Cannasse 18 years ago
parent
commit
235c9b509b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      std/tools/haxelib/Main.hx

+ 2 - 2
std/tools/haxelib/Main.hx

@@ -69,13 +69,13 @@ class ProgressIn extends neko.io.Input {
 		this.tot = tot;
 		this.tot = tot;
 	}
 	}
 
 
-	public function readChar() {
+	public override function readChar() {
 		var c = i.readChar();
 		var c = i.readChar();
 		doRead(1);
 		doRead(1);
 		return c;
 		return c;
 	}
 	}
 
 
-	public function readBytes(buf,pos,len) {
+	public override function readBytes(buf,pos,len) {
 		var k = i.readBytes(buf,pos,len);
 		var k = i.readBytes(buf,pos,len);
 		doRead(k);
 		doRead(k);
 		return k;
 		return k;