Browse Source

removed eof

Nicolas Cannasse 18 years ago
parent
commit
ad96dbd6d0
1 changed files with 0 additions and 5 deletions
  1. 0 5
      std/neko/io/FileInput.hx

+ 0 - 5
std/neko/io/FileInput.hx

@@ -71,16 +71,11 @@ class FileInput extends Input {
 		return file_tell(__f);
 	}
 
-	public function eof() : Bool {
-		return file_eof(__f);
-	}
-
 	private static var file_read = neko.Lib.load("std","file_read",4);
 	private static var file_read_char = neko.Lib.load("std","file_read_char",1);
 
 	private static var file_close = neko.Lib.load("std","file_close",1);
 	private static var file_seek = neko.Lib.load("std","file_seek",3);
 	private static var file_tell = neko.Lib.load("std","file_tell",1);
-	private static var file_eof = neko.Lib.load("std","file_eof",1);
 
 }