Merge "idmap: suppress print for padded resources"

This commit is contained in:
Treehugger Robot
2017-09-06 19:41:01 +00:00
committed by Gerrit Code Review

View File

@@ -284,7 +284,9 @@ namespace {
if (err != NO_ERROR) {
return err;
}
print("", "entry", data32, "%s/%s", type.string(), name.string());
if (data32 != ResTable_type::NO_ENTRY) {
print("", "entry", data32, "%s/%s", type.string(), name.string());
}
}
}