Skip to content

Commit

Permalink
fixing compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
danschultz committed Feb 22, 2011
1 parent e0dff97 commit 884bed6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/mesh/adaptors/RESTServiceAdaptor.as
Expand Up @@ -56,7 +56,6 @@ package mesh.adaptors
public function RESTServiceAdaptor(entity:Class, options:Object)
{
_service = new HTTPMultiService();
_service.operationList = operations;
super(_service, entity, options);
}

Expand Down Expand Up @@ -90,9 +89,9 @@ package mesh.adaptors
* @param options Any options to set on the operation.
* @return A new operation.
*/
private function createHTTPOperation(name:String, options:Object = null):Operation
private function createHTTPOperation(name:String, options:Object = null):mx.rpc.http.Operation
{
var operation:Operation = new Operation();
var operation:mx.rpc.http.Operation = new mx.rpc.http.Operation();
operation.name = name;

if (options != null) {
Expand Down

0 comments on commit 884bed6

Please sign in to comment.