Remove fAsset->read() debug statement

This shows up in the Skia logs constantly and does
not provide useful information.

Test: This no longer prints.

BUG:32370375

Change-Id: Ic8308d41826cb27de77b019fdc59e434086c8009
This commit is contained in:
Matt Sarett
2016-11-07 15:53:46 -05:00
parent a7fcb2bc2a
commit 9a2d4e74b7

View File

@@ -72,9 +72,6 @@ size_t AssetStreamAdaptor::read(void* buffer, size_t size) {
amount = newOffset - oldOffset;
} else {
amount = fAsset->read(buffer, size);
if (amount <= 0) {
SkDebugf("---- fAsset->read(%d) returned %d\n", size, amount);
}
}
if (amount < 0) {