> +
> +import javax.inject.Inject;
> +
> +import org.jclouds.http.HttpRequest;
> +import org.jclouds.json.Json;
> +import org.jclouds.rest.MapBinder;
> +
> +/**
> + * Binds the object to the request as a json object.
> + */
> +public class BindManifestToJsonPayload implements MapBinder {
> +
> + protected final Json jsonBinder;
> +
> + @Inject
> + public BindManifestToJsonPayload(Json jsonBinder) {
Make this package private and remove the redundant null check.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/745/files#r30147456