mirror of https://github.com/apache/jclouds.git
Bug fix for ContentRange equals
This commit is contained in:
parent
3f68c3f0c7
commit
0c36b36d35
|
@ -80,7 +80,7 @@ public final class ContentRange {
|
|||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
ContentRange other = (ContentRange) obj;
|
||||
return Objects.equal(this.from, other.to) && Objects.equal(this.from, other.to);
|
||||
return Objects.equal(this.from, other.from) && Objects.equal(this.to, other.to);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue