Don't return an unmod collection.

It's not needed as people can mess with this, and people do, so this fixes the build.
bug:8398355

Change-Id: Iddd00af41009c88b67fb7f9a8789bb416c377922
This commit is contained in:
Robert Greenwalt
2013-03-15 11:28:50 -07:00
parent 2d17281ca7
commit 26ce4b57d5

View File

@@ -197,7 +197,7 @@ public class LinkProperties implements Parcelable {
for (LinkProperties stacked: mStackedLinks.values()) {
routes.addAll(stacked.getAllRoutes());
}
return Collections.unmodifiableCollection(routes);
return routes;
}
public void setHttpProxy(ProxyProperties proxy) {