summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/ItemInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher3/ItemInfo.java')
-rw-r--r--src/com/android/launcher3/ItemInfo.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/com/android/launcher3/ItemInfo.java b/src/com/android/launcher3/ItemInfo.java
index fe030171b..74f16e325 100644
--- a/src/com/android/launcher3/ItemInfo.java
+++ b/src/com/android/launcher3/ItemInfo.java
@@ -108,11 +108,6 @@ public class ItemInfo {
CharSequence title;
/**
- * Content description of the item.
- */
- String contentDescription;
-
- /**
* The position of the item in a drag-and-drop operation.
*/
int[] dropPos = null;
@@ -120,7 +115,6 @@ public class ItemInfo {
UserHandleCompat user;
ItemInfo() {
- user = UserHandleCompat.myUserHandle();
}
ItemInfo(ItemInfo info) {
@@ -133,7 +127,6 @@ public class ItemInfo {
itemType = info.itemType;
container = info.container;
user = info.user;
- contentDescription = info.contentDescription;
// tempdebug:
LauncherModel.checkItemInfo(this);
}