> +    * @see InstanceApi#describeInstances
> +    * @see #describeImageAttribute
> +    * @see <a 
> href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeImages.html";
> +    *      />
> +    * @see DescribeImagesOptions
> +    */
> +   @Named("DescribeImages")
> +   @POST
> +   @Path("/")
> +   @FormParams(keys = ACTION, values = "DescribeImages")
> +   @XMLResponseParser(DescribeImagesResponseHandler.class)
> +   @Fallback(EmptySetOnNotFoundOr404.class)
> +   Set<? extends Image> describeImagesInRegionWithFilter(
> +           @EndpointParam(parser = RegionToEndpointOrProviderIfNull.class) 
> @Nullable String region,
> +           @BinderParam(BindFiltersToIndexedFormParams.class) 
> Multimap<String, String> filter,
> +           DescribeImagesOptions... options);

OK, then I'd ask the same question there ;-) It looks suspiciously like a 
copy-paste error from a `String... names` or similar method - how would you 
supply _multiple_ options objects? What would that even mean?

Could you remove the `...` and see if that breaks anything?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/194/files#r7513071

Reply via email to