Nicolas Cannasse пре 18 година
родитељ
комит
3245c261df
2 измењених фајлова са 2 додато и 1 уклоњено
  1. 1 0
      std/haxe/ImportAll.hx
  2. 1 1
      std/haxe/remoting/AsyncAdapter.hx

+ 1 - 0
std/haxe/ImportAll.hx

@@ -59,6 +59,7 @@ import haxe.Template;
 import haxe.Timer;
 import haxe.Unserializer;
 
+import haxe.remoting.AsyncAdapter;
 import haxe.remoting.AsyncConnection;
 import haxe.remoting.AsyncDebugConnection;
 import haxe.remoting.AsyncProxy;

+ 1 - 1
std/haxe/remoting/AsyncAdapter.hx

@@ -35,7 +35,7 @@ class AsyncAdapter extends AsyncConnection {
 		return s;
 	}
 
-	public function call( params : Array<Dynamic>, ?onData : Dynamic -> Void ) : Void {
+	public override function call( params : Array<Dynamic>, ?onData : Dynamic -> Void ) : Void {
 		var ret;
 		try {
 			var c : Connection = __data;