Merge "Don't return an unmod collection." into jb-mr2-dev

This commit is contained in:
Robert Greenwalt
2013-03-15 19:13:47 +00:00
committed by Android (Google) Code Review

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) {