> @@ -104,4 +104,27 @@ public static Network create(String name, String id, 
> String scope, String driver
>        return new AutoValue_Network(name, id, scope, driver, ipam, 
> copyOf(containers), copyOf(options));

I think you may want to change it to 
```
      return 
builder().name(name).id(id).scope(scope).driver(driver).ipam(ipam).containers(copyOf(containers)).options(copyOf(options)).build();
```

---
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-labs/pull/296/files/c891af3825b074b165b669ec400d981f90a70c3c#r69378816

Reply via email to