Merge "[DO NOT MERGE] Update CellIdentityGsm Constructor" am: 0c2cd2a94d am: 1edf46fc74

Change-Id: I8e4241bce34b6a2099c116cbe76d6e84896d6331
This commit is contained in:
Automerger Merge Worker
2020-01-29 16:37:28 +00:00

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);