Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 85073a40 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Adding toString in SmartspaceTargetEvent" into sc-dev

parents b7322dae 3ef21c78
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -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
     */