[jira] [Assigned] (JCLOUDS-1101) JDK 9 compatibility

2016-10-30 Thread Andrew Gaul (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-1101?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andrew Gaul reassigned JCLOUDS-1101: Assignee: Andrew Gaul > JDK 9 compatibility > --- > > Key

[jira] [Commented] (JCLOUDS-1101) JDK 9 compatibility

2016-10-30 Thread Andrew Gaul (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-1101?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15621296#comment-15621296 ] Andrew Gaul commented on JCLOUDS-1101: -- Upstream AutoValue issue, fix under review:

Re: [jclouds/jclouds] [aws-ec2] Add CRUD for VPC (#1032)

2016-10-30 Thread Ignasi Barrera
nacx requested changes on this pull request. Thanks @andreaturli! > + VPC() {} + + public static Builder builder() { + return new AutoValue_VPC.Builder(); + } + + @AutoValue.Builder + public abstract static class Builder { + + public abstract Builder id(String id); + publ

Re: [jclouds/jclouds-labs] pb-updates-v3 (#333)

2016-10-30 Thread Ignasi Barrera
nacx commented on this pull request. Just a couple minors. Apart from that LGTM! Thanks @alibazlamit! > @@ -69,30 +72,31 @@ public void testCreateServer() { .cores(1) .ram(1024) .build()); - + + assertRequestCompleted(testServer); Duplicate