Navigation Menu

Skip to content

Commit

Permalink
determineLeftMembers(): had to revert to using Vector instead of List…
Browse files Browse the repository at this point in the history
…, for backwards compatibility
  • Loading branch information
belaban committed Jan 19, 2011
1 parent 71383ac commit 9846a25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/org/jgroups/util/Util.java
Expand Up @@ -2223,8 +2223,8 @@ public static Object[][] createTimer() {
* Returns all members that left between 2 views. All members that are element of old_mbrs but not element of
* new_mbrs are returned.
*/
public static List<Address> determineLeftMembers(List<Address> old_mbrs, List<Address> new_mbrs) {
List<Address> retval=new ArrayList<Address>();
public static Vector<Address> determineLeftMembers(List<Address> old_mbrs, List<Address> new_mbrs) {
Vector<Address> retval=new Vector<Address>();
if(old_mbrs == null || new_mbrs == null)
return retval;

Expand Down

0 comments on commit 9846a25

Please sign in to comment.