Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 868adf73 authored by Robert Greenwalt's avatar Robert Greenwalt Committed by Android (Google) Code Review
Browse files

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

parents 8dfe99ce 6629bcd6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {