Commit c116391f by falhassen Committed by Oliver Woodman

Override RangedUri#toString.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=193710604
parent 30e040a4
......@@ -126,4 +126,15 @@ public final class RangedUri {
&& referenceUri.equals(other.referenceUri);
}
@Override
public String toString() {
return "RangedUri("
+ "referenceUri="
+ referenceUri
+ ", start="
+ start
+ ", length="
+ length
+ ")";
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment