I'm switching PeerRepository over to Depot and it returns Lists, not ArrayLists. I sure wish we could use the List and Map interfaces. It's not like we're suddenly going to surprise the caller by maliciously returning a LinkedList one day, or something.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4768 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Par Winzell
2007-07-17 20:33:47 +00:00
parent 321c3f17e5
commit 6c65d51d76
@@ -24,6 +24,7 @@ package com.threerings.presents.peer.server;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.logging.Level;
import com.samskivert.io.PersistenceException;
@@ -607,7 +608,7 @@ public class PeerManager
}
}
}
protected ArrayList<NodeRecord> _nodes;
protected List<NodeRecord> _nodes;
});
}