From b22ccb7b7111d55b088988478a2aef60c0f8f32c Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Fri, 28 Sep 2001 01:24:54 +0000 Subject: [PATCH] Return a List rather than an ArrayList. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@353 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/miso/client/Cluster.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/java/com/threerings/miso/client/Cluster.java b/src/java/com/threerings/miso/client/Cluster.java index a4813096b..e44086ee4 100644 --- a/src/java/com/threerings/miso/client/Cluster.java +++ b/src/java/com/threerings/miso/client/Cluster.java @@ -1,8 +1,9 @@ // -// $Id: Cluster.java,v 1.2 2001/08/10 21:17:07 shaper Exp $ +// $Id: Cluster.java,v 1.3 2001/09/28 01:24:54 mdb Exp $ package com.threerings.miso.scene; +import java.util.List; import java.util.ArrayList; import com.samskivert.util.StringUtil; @@ -69,7 +70,7 @@ public class Cluster /** * Return the list of locations that the cluster is made up of. */ - public ArrayList getLocations () + public List getLocations () { return _locations; }