>   * @author Zack Shoylev
>   */
> -public class Webhook {
> -   private final String name;
> -   private final ImmutableMap<String, Object> metadata;
> -
> -   @ConstructorProperties({ "name", "metadata" })
> -   protected Webhook(String name, @Nullable Map<String, Object> metadata) {
> -      this.name = checkNotNull(name, "name should not be null");
> -      if (metadata == null) {
> -         this.metadata = ImmutableMap.of();
> -      } else {
> -         this.metadata = ImmutableMap.copyOf(metadata);
> -      }
> +public class Webhook extends CreateWebhook{

[minor] Space after "CreateWebhook"?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/74/files#r8710467

Reply via email to