remove stray printf

BUG=skia:
TBR=junov@google.com

Review URL: https://codereview.chromium.org/1149083008
This commit is contained in:
reed 2015-06-04 06:27:44 -07:00 committed by Commit bot
parent 08d171445b
commit 321fa70b7e

View File

@ -1449,7 +1449,6 @@ int32_t SkImageHeap::insert(const SkImage* img) {
// TODO: SkImage does not expose bytes per pixel, 4 is just a best guess.
fBytesInCache += img->width() * img->height() * 4;
*fArray.append() = SkRef(img);
printf("Images reff'ed: %d \n", fArray.count());
return fArray.count(); // slot is always index+1
}