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 @Override
public String toString() { public String toString() {
return "DataSpec[" + uri + ", " + ", " + absoluteStreamPosition + ", " + return "DataSpec[" + uri + ", " + absoluteStreamPosition + ", " + position + ", " + length
position + ", " + length + ", " + key + ", " + flags + "]"; + ", " + key + ", " + flags + "]";
} }
} }