Selaa lähdekoodia

Don't make accessor public (#5403)

Valentin Lemière 9 vuotta sitten
vanhempi
commit
5af0dde60d
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      std/python/_std/StringBuf.hx

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

@@ -34,7 +34,7 @@ class StringBuf {
 
 	public var length(get, never):Int;
 
-	public function get_length ():Int {
+	function get_length ():Int {
 		var pos = b.tell();
 		b.seek(0, SeekEnd);
 		var len = b.tell();