commit | 1edab71d010f3efdde212b96aa1a44ab7a5b4ee5 | [log] [tgz] |
---|---|---|
author | Sunny Goyal <sunnygoyal@google.com> | Thu Sep 01 10:55:20 2016 -0700 |
committer | Sunny Goyal <sunnygoyal@google.com> | Thu Sep 01 10:55:45 2016 -0700 |
tree | 48d0d361a74755b77488ba588f3974653801a814 | |
parent | 35908f9e67b9cdae917385ef9e67e168cb0c93b3 [diff] [blame] |
Unifying toString() method for various ItemInfo subclasses Change-Id: I7cde42f0df412e2877fb93c77e74ee56a25edead
diff --git a/src/com/android/launcher3/PendingAddItemInfo.java b/src/com/android/launcher3/PendingAddItemInfo.java index 1aaf85b..31820d7 100644 --- a/src/com/android/launcher3/PendingAddItemInfo.java +++ b/src/com/android/launcher3/PendingAddItemInfo.java
@@ -29,4 +29,9 @@ * The component that will be created. */ public ComponentName componentName; + + @Override + protected String dumpProperties() { + return super.dumpProperties() + " componentName=" + componentName; + } }