Browse Source

remove comment

frabbit 11 years ago
parent
commit
453f33d511
1 changed files with 0 additions and 1 deletions
  1. 0 1
      std/python/_std/StringBuf.hx

+ 0 - 1
std/python/_std/StringBuf.hx

@@ -55,7 +55,6 @@ class StringBuf {
 	public var length(get, never):Int;
 
 	public function get_length ():Int {
-		// TODO improve implementation like f.seek(0, 2) size = f.tell() f.seek(0)
 		var pos = b.tell();
 		b.seek(0, SeekSet.SeekEnd);
 		var len = b.tell();