Unifying toString() method for various ItemInfo subclasses

Change-Id: I7cde42f0df412e2877fb93c77e74ee56a25edead
This commit is contained in:
Sunny Goyal
2016-09-01 10:55:20 -07:00
parent 35908f9e67
commit 1edab71d01
9 changed files with 29 additions and 46 deletions

View File

@@ -29,4 +29,9 @@ public class PendingAddItemInfo extends ItemInfo {
* The component that will be created.
*/
public ComponentName componentName;
@Override
protected String dumpProperties() {
return super.dumpProperties() + " componentName=" + componentName;
}
}