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:
@@ -197,7 +197,7 @@ public class LinkProperties implements Parcelable {
|
|||||||
for (LinkProperties stacked: mStackedLinks.values()) {
|
for (LinkProperties stacked: mStackedLinks.values()) {
|
||||||
routes.addAll(stacked.getAllRoutes());
|
routes.addAll(stacked.getAllRoutes());
|
||||||
}
|
}
|
||||||
return Collections.unmodifiableCollection(routes);
|
return routes;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setHttpProxy(ProxyProperties proxy) {
|
public void setHttpProxy(ProxyProperties proxy) {
|
||||||
|
|||||||
Reference in New Issue
Block a user