> +
> +import java.util.Iterator;
> +
> +import com.google.common.base.Objects;
> +import com.google.common.base.Splitter;
> +
> +/**
> + * This class represents a range of bytes.
> + */
> +public class ContentRange {
> + private final long from;
> + private final long to;
> +
> + private ContentRange(long from, long to) {
> + this.from = from;
> + this.to = to;
Should these have some kind of validation, e.g., non-negative, from less than
to?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-aws/pull/18/files#r13948488