[Jboss-cvs] JBossAS SVN: r56224 - trunk/cluster/src/main/org/jboss/ha/framework/interfaces

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Aug 24 13:56:22 EDT 2006


Author: bdecoste
Date: 2006-08-24 13:56:20 -0400 (Thu, 24 Aug 2006)
New Revision: 56224

Modified:
   trunk/cluster/src/main/org/jboss/ha/framework/interfaces/HARMIClient.java
Log:
fixed List vs ArrayList CCE

Modified: trunk/cluster/src/main/org/jboss/ha/framework/interfaces/HARMIClient.java
===================================================================
--- trunk/cluster/src/main/org/jboss/ha/framework/interfaces/HARMIClient.java	2006-08-24 17:41:03 UTC (rev 56223)
+++ trunk/cluster/src/main/org/jboss/ha/framework/interfaces/HARMIClient.java	2006-08-24 17:56:20 UTC (rev 56224)
@@ -286,7 +286,7 @@
       throws IOException, ClassNotFoundException
    {
       this.key = stream.readUTF();
-      ArrayList targets = (ArrayList)stream.readObject();
+      List targets = (List)stream.readObject();
       long vid = stream.readLong ();
       this.loadBalancePolicy = (LoadBalancePolicy)stream.readObject();
       HARMIServer server = (HARMIServer)HARMIServer.rmiServers.get(key);




More information about the jboss-cvs-commits mailing list