> @@ -91,6 +91,8 @@ protected void configure() {
> bind(new TypeLiteral<ComputeServiceAdapter<Instance, MachineType,
> Image, Location>>() {
> }).to(GoogleComputeEngineServiceAdapter.class);
>
> +
> bind(ArbitraryCpuRamTemplateBuilderImpl.class).to(GoogleComputeEngineArbitraryCpuRamTemplateBuilderImpl.class);
This should be:
```java
bind(TemplateBuilder.class).to(GoogleComputeEngineArbitraryCpuRamTemplateBuilderImpl.class);
```
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/984/files/24d1c709310ffe7e511e13c203f2d7f0d4709d37#r71836317