Nicolas Cannasse 19 vuotta sitten
vanhempi
commit
235c9b509b
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  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;
 	}
 
-	public function readChar() {
+	public override function readChar() {
 		var c = i.readChar();
 		doRead(1);
 		return c;
 	}
 
-	public function readBytes(buf,pos,len) {
+	public override function readBytes(buf,pos,len) {
 		var k = i.readBytes(buf,pos,len);
 		doRead(k);
 		return k;