> @@ -77,7 +78,7 @@ public static String getBucketName(HttpRequest req) {
>
> String bucketName = null;
>
> - ImmutableList<Parameter> parameters =
> request.getInvocation().getInvokable().getParameters();
> + List<Parameter> parameters =
> Reflection2.getInvokableParameters(request.getInvocation().getInvokable());
This was something I introduced in a previous change but I shouldn't have.
There is nothing in the below code that uses any ImmutableList specific
functions and I generally prefer using the least specific type if possible.
This is also reflected in a couple of the other changes below.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/164/files#r6723292