summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerWithQueryImpl.java
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-08-24 19:38:12 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-08-24 19:38:12 +0000
commit1dd5d7fb7e6f91b81cb3c771a5e83be5e1e65e2a (patch)
tree3d49f9301fa9c1942692205036c567808c14c17d /sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerWithQueryImpl.java
parent00f574ed6c10359933ec1ba19e6a56df175041fe (diff)
Merge revision 942356 from trunk into the 1.6.1 branch
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@988686 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerWithQueryImpl.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerWithQueryImpl.java b/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerWithQueryImpl.java
index 18483817ad..ef9dc8c16a 100644
--- a/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerWithQueryImpl.java
+++ b/sca-java-1.x/branches/sca-java-1.6.1/itest/osgi-implementation/src/main/java/supplychain/customer/OSGiCustomerWithQueryImpl.java
@@ -20,6 +20,8 @@ package supplychain.customer;
import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
import supplychain.OSGiBundleImpl;
import supplychain.retailer.Retailer;
@@ -30,7 +32,7 @@ import supplychain.retailer.RetailerQuery;
*/
public class OSGiCustomerWithQueryImpl extends OSGiBundleImpl implements Customer {
- private static ArrayList<String> outstandingOrders = new ArrayList<String>();
+ private static List<String> outstandingOrders = Collections.synchronizedList(new ArrayList<String>());
private Retailer retailer;
private RetailerQuery retailerQuery;