> + .defaultProperties(ProfitBricksApiMetadata.defaultProperties())
> + .defaultModules(ImmutableSet.<Class<? extends
> Module>>of(ProfitBricksHttpApiModule.class));
> + }
> +
> + @Override
> + public ProfitBricksApiMetadata build() {
> + return new ProfitBricksApiMetadata(this);
> + }
> +
> + @Override
> + protected Builder self() {
> + return this;
> + }
> + }
> +
> +}
You may also want to remove the `AutoService` annotation from this class and
leave it only in the ProviderMetadata so the ServiceLoader only picks the
provider when loading it by name.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/72/files#r22133194