Fix DataSpec toString formatting.

This commit is contained in:
Oliver Woodman 2015-04-22 16:19:48 +01:00
parent c807c69a93
commit a1336978ad

View File

@ -137,8 +137,8 @@ public final class DataSpec {
@Override
public String toString() {
return "DataSpec[" + uri + ", " + ", " + absoluteStreamPosition + ", " +
position + ", " + length + ", " + key + ", " + flags + "]";
return "DataSpec[" + uri + ", " + absoluteStreamPosition + ", " + position + ", " + length
+ ", " + key + ", " + flags + "]";
}
}