Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9a2d4e74 authored by Matt Sarett's avatar Matt Sarett
Browse files

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
parent a7fcb2bc
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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) {