From 6e904cb43a6c19c18fc027a49e10a026dc886bb6 Mon Sep 17 00:00:00 2001 From: Dan Schultz Date: Tue, 27 Mar 2012 13:25:04 -0700 Subject: [PATCH] Disable Customer.orders.isMaster --- tests/mesh/Customer.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mesh/Customer.as b/tests/mesh/Customer.as index 1ab0956..9479860 100644 --- a/tests/mesh/Customer.as +++ b/tests/mesh/Customer.as @@ -10,7 +10,7 @@ package mesh public var accountId:int; - [HasMany(inverse="customer", recordType="mesh.Order", isMaster="true")] + [HasMany(inverse="customer", recordType="mesh.Order")] public var orders:HasManyAssociation; public function Customer(properties:Object=null)