Nicolas Cannasse 18 years ago
parent
commit
3245c261df
2 changed files with 2 additions and 1 deletions
  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;