Bug fix for ContentRange equals

This commit is contained in:
Roman C. Coedo 2014-06-25 02:21:50 +02:00 committed by Andrew Gaul
parent 3f68c3f0c7
commit 0c36b36d35
1 changed files with 1 additions and 1 deletions

View File

@ -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