Author: lektran
Date: Sat Aug  9 09:43:15 2014
New Revision: 1616928

URL: http://svn.apache.org/r1616928
Log:
Replace FastList with ArrayList

Modified:
    
ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceSynchronization.java

Modified: 
ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceSynchronization.java
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceSynchronization.java?rev=1616928&r1=1616927&r2=1616928&view=diff
==============================================================================
--- 
ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceSynchronization.java 
(original)
+++ 
ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceSynchronization.java 
Sat Aug  9 09:43:15 2014
@@ -1,5 +1,6 @@
 package org.ofbiz.service;
 
+import java.util.ArrayList;
 import java.util.List;
 import java.util.Map;
 import java.util.WeakHashMap;
@@ -31,7 +32,7 @@ public class ServiceSynchronization impl
     public static final String MODULE = ServiceSynchronization.class.getName();
 
     private static Map<Transaction, ServiceSynchronization> syncingleton = new 
WeakHashMap<Transaction, ServiceSynchronization>();
-    private List<ServiceExecution> services = FastList.newInstance();
+    private List<ServiceExecution> services = new 
ArrayList<ServiceExecution>();
 
     public static void registerCommitService(DispatchContext dctx, String 
serviceName, String runAsUser, Map<String, ? extends Object> context, boolean 
async, boolean persist) throws GenericServiceException {
         ServiceSynchronization sync = ServiceSynchronization.getInstance();


Reply via email to