Browse Source

removed __string (automaticaly generated)

Nicolas Cannasse 20 years ago
parent
commit
596455b8c5
1 changed files with 1 additions and 5 deletions
  1. 1 5
      std/neko/NekoArray__.hx

+ 1 - 5
std/neko/NekoArray__.hx

@@ -105,7 +105,7 @@ class NekoArray__<T> implements Array<T> {
 		for i in it {
 			s.add(i);
 			if( it.hasNext() )
-				s.add(",");
+				s.add(", ");
 		}
 		s.add("]");
 		return s.toString();
@@ -235,10 +235,6 @@ class NekoArray__<T> implements Array<T> {
 
 	/* NEKO INTERNAL */
 
-	private function __string() {
-		return untyped toString().__s;
-	}
-
 	private function __get( pos  ) {
 		return untyped this.__a[pos];
 	}