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

Commit 258e0faf authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Rename TextClassificationSessionId.flattenToString() to getValue()"...

Merge "Rename TextClassificationSessionId.flattenToString() to getValue()" into rvc-dev am: 36beec80 am: a3822c7b am: d99c3c0b am: d6a935a9

Change-Id: Iccd0ab868213dd659cc845d1e6f20dba7c4f30c1
parents 63a5452f d6a935a9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -57549,7 +57549,7 @@ package android.view.textclassifier {
  public final class TextClassificationSessionId implements android.os.Parcelable {
    method public int describeContents();
    method @NonNull public String flattenToString();
    method @NonNull public String getValue();
    method public void writeToParcel(android.os.Parcel, int);
    field @NonNull public static final android.os.Parcelable.Creator<android.view.textclassifier.TextClassificationSessionId> CREATOR;
  }
+1 −1
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@ public final class SelectionSessionLogger {
                    .addTaggedData(SMART_END, event.getSmartEnd());
        }
        if (event.getSessionId() != null) {
            log.addTaggedData(SESSION_ID, event.getSessionId().flattenToString());
            log.addTaggedData(SESSION_ID, event.getSessionId().getValue());
        }
        mMetricsLogger.write(log);
        debugLog(log);
+2 −4
Original line number Diff line number Diff line
@@ -92,12 +92,10 @@ public final class TextClassificationSessionId implements Parcelable {
    }

    /**
     * Flattens this id to a string.
     *
     * @return The flattened id.
     * Returns the value of this ID.
     */
    @NonNull
    public String flattenToString() {
    public String getValue() {
        return mValue;
    }