2
0
Эх сурвалжийг харах

[cs] remove old @:private annotations

Dan Korostelev 7 жил өмнө
parent
commit
64793a502b

+ 1 - 1
std/cs/_std/haxe/ds/ObjectMap.hx

@@ -170,7 +170,7 @@ import cs.NativeArray;
 		return -1;
 		return -1;
 	}
 	}
 
 
-	@:final @:private function resize(newNBuckets:Int) : Void
+	@:final function resize(newNBuckets:Int) : Void
 	{
 	{
 		//This function uses 0.25*n_bucktes bytes of working space instead of [sizeof(key_t+val_t)+.25]*n_buckets.
 		//This function uses 0.25*n_bucktes bytes of working space instead of [sizeof(key_t+val_t)+.25]*n_buckets.
 		var newHash = null;
 		var newHash = null;

+ 1 - 1
std/cs/_std/haxe/ds/StringMap.hx

@@ -175,7 +175,7 @@ import cs.NativeArray;
 		return -1;
 		return -1;
 	}
 	}
 
 
-	@:final @:private function resize(newNBuckets:Int) : Void
+	@:final function resize(newNBuckets:Int) : Void
 	{
 	{
 		//This function uses 0.25*n_bucktes bytes of working space instead of [sizeof(key_t+val_t)+.25]*n_buckets.
 		//This function uses 0.25*n_bucktes bytes of working space instead of [sizeof(key_t+val_t)+.25]*n_buckets.
 		var newHash = null;
 		var newHash = null;

+ 1 - 1
std/cs/_std/haxe/ds/WeakMap.hx2

@@ -204,7 +204,7 @@ import cs.system.WeakReference;
 		return -1;
 		return -1;
 	}
 	}
 
 
-	@:final @:private function resize(newNBuckets:Int) : Void
+	@:final function resize(newNBuckets:Int) : Void
 	{
 	{
 		//This function uses 0.25*n_bucktes bytes of working space instead of [sizeof(key_t+val_t)+.25]*n_buckets.
 		//This function uses 0.25*n_bucktes bytes of working space instead of [sizeof(key_t+val_t)+.25]*n_buckets.
 		var newHash = null;
 		var newHash = null;