Merge "[DO NOT MERGE] Update CellIdentityGsm Constructor"

am: 0c2cd2a94d

Change-Id: Ibce639f419d021ba6abe507381644eb3fd8249ef
This commit is contained in:
Sarah Chin
2020-01-29 08:14:34 -08:00
committed by android-build-merger

View File

@@ -33,6 +33,7 @@ import android.util.Log;
import com.android.internal.telephony.OperatorInfo;
import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors;
@@ -150,7 +151,7 @@ public final class CellInfoUtil {
mcc,
mnc,
operatorInfo.getOperatorAlphaLong(),
operatorInfo.getOperatorAlphaShort());
operatorInfo.getOperatorAlphaShort(), Collections.emptyList());
CellInfoGsm ci = new CellInfoGsm();
ci.setCellIdentity(cig);