> Builder<String, URI> builder = ImmutableMap.builder();
> for (Entry<String, String> entry : from.getHeaders().entries()) {
> - if (entry.getKey().endsWith(URL_SUFFIX))
> + if (entry.getKey().toLowerCase().endsWith(URL_SUFFIX.toLowerCase()))
Removed the whole piece about the case insensitive map. None of that is
preserved anyway because `new AuthenticationResponse` makes a copy of the map.
Let's see what BuildHive has to say about this version...
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/76/files#r5467681