code4clouds commented on this pull request.
> @@ -43,7 +43,7 @@
@SerializedNames({ "id", "name", "location", "tags", "properties", "etag" })
public static NetworkSecurityGroup create(final String id, final String
name, final String location,
final Map<String, String> tags, final NetworkSecurityGroupProperties
properties, final String etag) {
- return new AutoValue_NetworkSecurityGroup(id, name, location, (tags ==
null) ? null : ImmutableMap.copyOf(tags),
+ return new AutoValue_NetworkSecurityGroup(id, name, location, (tags ==
null) ? ImmutableMap.<String, String>of() : ImmutableMap.copyOf(tags),
fixed...
--
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/412#discussion_r147038775