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

Commit f5755c29 authored by Aaron Huang's avatar Aaron Huang
Browse files

Add return type javadoc to NetworkStateSnapshot#getLegacyType

Add javadoc to document the return type is the legacy network
type in getLegacyType.

Bug: 183972826
Test: only update javadoc
Change-Id: I7757253af5955f7d489d6349c090dcba146cfd7f
parent 6a295360
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -104,7 +104,10 @@ public final class NetworkStateSnapshot implements Parcelable {
        return mSubscriberId;
    }

    /** Get the legacy type of the network associated with this snapshot. */
    /**
     * Get the legacy type of the network associated with this snapshot.
     * @return the legacy network type. See {@code ConnectivityManager#TYPE_*}.
     */
    public int getLegacyType() {
        return mLegacyType;
    }