From fb2cfa223b47db3ee46df22dcdb92f4fb013dcdd Mon Sep 17 00:00:00 2001 From: Chih-Chung Chang Date: Fri, 3 Feb 2012 20:52:59 +0800 Subject: Comment out a warning message to avoid log spamming. The warning message happens a lot when the region decoder is used (like viewing a picture in the Gallery app). Change-Id: I435f92eac8f322b091f3ed14ee48d0b5f0d84a8a --- core/jni/android/graphics/Graphics.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/core/jni/android/graphics/Graphics.cpp b/core/jni/android/graphics/Graphics.cpp index 47ffd94..a1d41ee 100644 --- a/core/jni/android/graphics/Graphics.cpp +++ b/core/jni/android/graphics/Graphics.cpp @@ -518,12 +518,6 @@ JavaPixelAllocator::JavaPixelAllocator(JNIEnv* env) bool JavaPixelAllocator::allocPixelRef(SkBitmap* bitmap, SkColorTable* ctable) { JNIEnv* env = vm2env(fVM); - // If allocating in the Java heap, only allow a single object to be - // allocated for the lifetime of this object. - if (fStorageObj != NULL) { - SkDebugf("WARNING: One-shot allocator has already allocated (alloc count = %d)\n", fAllocCount); -// sk_throw(); - } fStorageObj = GraphicsJNI::allocateJavaPixelRef(env, bitmap, ctable); fAllocCount += 1; return fStorageObj != NULL; -- cgit v1.1