am 868adf73: Merge "Don\'t return an unmod collection." into jb-mr2-dev

* commit '868adf7369ed9f0dcd02cee5dd36a50b892bf936':
  Don't return an unmod collection.
This commit is contained in:
Robert Greenwalt
2013-03-15 19:15:39 +00:00
committed by Android Git Automerger

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