> super(id, name, location, uri, userMetadata);
> this.eTag = eTag;
> this.creationDate = creationDate;
> this.lastModified = lastModified;
> this.type = checkNotNull(type, "type");
> + this.size = size;
> + }
> +
> + /** @deprecated use 10-argument variant of constructor. */
> + @Deprecated
> + public StorageMetadataImpl(StorageType type, @Nullable String id,
> @Nullable String name,
> + @Nullable Location location, @Nullable URI uri, @Nullable String
> eTag,
> + @Nullable Date creationDate, @Nullable Date lastModified,
> + Map<String, String> userMetadata) {
> + this(type, id, name, location, uri, eTag, creationDate, lastModified,
> userMetadata, /*size=*/ null);
Done.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/465/files#r22495766