Override RangedUri#toString.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=193710604
This commit is contained in:
falhassen 2018-04-20 13:02:02 -07:00 committed by Oliver Woodman
parent 30e040a48d
commit c116391fe2

View File

@ -126,4 +126,15 @@ public final class RangedUri {
&& referenceUri.equals(other.referenceUri); && referenceUri.equals(other.referenceUri);
} }
@Override
public String toString() {
return "RangedUri("
+ "referenceUri="
+ referenceUri
+ ", start="
+ start
+ ", length="
+ length
+ ")";
}
} }