diff options
| author | 2021-02-09 15:31:26 -0800 | |
|---|---|---|
| committer | 2021-02-09 15:32:52 -0800 | |
| commit | 3ef21c78f5be87ad4530bb1345c8ec9842696e23 (patch) | |
| tree | 50cb3b5947d69b4d96f2bf162cb8b626c262dcd6 | |
| parent | ceb8ce05d01ea3ee1f5876a4f4b5829527da8632 (diff) | |
Adding toString in SmartspaceTargetEvent
Bug: 176851064
Test: Manual
Change-Id: I14e554817642447da315c8aeccfed83256155e58
| -rw-r--r-- | core/java/android/app/smartspace/SmartspaceTargetEvent.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/java/android/app/smartspace/SmartspaceTargetEvent.java b/core/java/android/app/smartspace/SmartspaceTargetEvent.java index 1e0653d67ace..920b9fe6a34f 100644 --- a/core/java/android/app/smartspace/SmartspaceTargetEvent.java +++ b/core/java/android/app/smartspace/SmartspaceTargetEvent.java @@ -138,6 +138,15 @@ public final class SmartspaceTargetEvent implements Parcelable { dest.writeInt(mEventType); } + @Override + public String toString() { + return "SmartspaceTargetEvent{" + + "mSmartspaceTarget=" + mSmartspaceTarget + + ", mSmartspaceActionId='" + mSmartspaceActionId + '\'' + + ", mEventType=" + mEventType + + '}'; + } + /** * @hide */ |