mirror of
https://github.com/samsonjs/media.git
synced 2026-03-28 09:55:48 +00:00
Override RangedUri#toString.
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=193710604
This commit is contained in:
parent
30e040a48d
commit
c116391fe2
1 changed files with 11 additions and 0 deletions
|
|
@ -126,4 +126,15 @@ public final class RangedUri {
|
|||
&& referenceUri.equals(other.referenceUri);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "RangedUri("
|
||||
+ "referenceUri="
|
||||
+ referenceUri
|
||||
+ ", start="
|
||||
+ start
|
||||
+ ", length="
|
||||
+ length
|
||||
+ ")";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue