> @@ -119,8 +119,7 @@ public > GoogleComputeEngineSecurityGroupExtension(GoogleComputeEngineApi api, > return ImmutableSet.of(); > } > > - ImmutableSet.Builder builder = ImmutableSet.builder(); > - > + ImmutableSet.Builder<SecurityGroup> builder = ImmutableSet.builder();
Another thing that is fine, but I'd say in the future we should stop Set'ing everything. List is fine for things like this. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-google/pull/62/files#r19255842
