]> git.saurik.com Git - android/aapt.git/blobdiff - StringPool.cpp
Whoops, remove left-over debug output.
[android/aapt.git] / StringPool.cpp
index 51afc0a946cc38d617c1144743609c98dfb19fe5..d067d59006c66140f88339f6ea717bf0dcc05f8c 100644 (file)
@@ -25,8 +25,12 @@ void printStringPool(const ResStringPool* pool)
     const size_t NS = pool->size();
     for (size_t s=0; s<NS; s++) {
         size_t len;
-        printf("String #%ld: %s\n", s,
-                String8(pool->stringAt(s, &len)).string());
+        const char *str = (const char*)pool->string8At(s, &len);
+        if (str == NULL) {
+            str = String8(pool->stringAt(s, &len)).string();
+        }
+
+        printf("String #%zd: %s\n", s, str);
     }
 }