Remove unneeded casts.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4923 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Dave Hoover
2008-01-17 01:25:52 +00:00
parent 346e4ee781
commit 2ce35db583
3 changed files with 4 additions and 6 deletions
@@ -290,7 +290,7 @@ public class Client
}
int scount = _bstrap.services.size();
for (int ii = 0; ii < scount; ii++) {
InvocationService service = (InvocationService)_bstrap.services.get(ii);
InvocationService service = _bstrap.services.get(ii);
if (sclass.isInstance(service)) {
return service;
}