Make SignalStrength constructor public
Test: atest SignalStrengthTest Fix: 171315098 CTS-Coverage-Bug: 171078601 Change-Id: I5eb389d0540912718c60d98b99501826c9fbbcb7 Merged-In: I5eb389d0540912718c60d98b99501826c9fbbcb7
This commit is contained in:
@@ -46095,6 +46095,7 @@ package android.telephony {
|
||||
}
|
||||
|
||||
public class SignalStrength implements android.os.Parcelable {
|
||||
ctor public SignalStrength(@NonNull android.telephony.SignalStrength);
|
||||
method public int describeContents();
|
||||
method @Deprecated public int getCdmaDbm();
|
||||
method @Deprecated public int getCdmaEcio();
|
||||
|
||||
@@ -9880,10 +9880,6 @@ package android.telephony {
|
||||
field public static final int ROAMING_TYPE_UNKNOWN = 1; // 0x1
|
||||
}
|
||||
|
||||
public class SignalStrength implements android.os.Parcelable {
|
||||
ctor public SignalStrength(@NonNull android.telephony.SignalStrength);
|
||||
}
|
||||
|
||||
public final class SmsCbCmasInfo implements android.os.Parcelable {
|
||||
ctor public SmsCbCmasInfo(int, int, int, int, int, int);
|
||||
method public int describeContents();
|
||||
|
||||
@@ -18,7 +18,6 @@ package android.telephony;
|
||||
|
||||
import android.annotation.ElapsedRealtimeLong;
|
||||
import android.annotation.NonNull;
|
||||
import android.annotation.SystemApi;
|
||||
import android.compat.annotation.UnsupportedAppUsage;
|
||||
import android.os.Build;
|
||||
import android.os.Bundle;
|
||||
@@ -291,9 +290,7 @@ public class SignalStrength implements Parcelable {
|
||||
* This constructor is used to create a copy of an existing SignalStrength object.
|
||||
*
|
||||
* @param s Source SignalStrength
|
||||
* @hide
|
||||
*/
|
||||
@SystemApi
|
||||
public SignalStrength(@NonNull SignalStrength s) {
|
||||
copyFrom(s);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user