Add a parameter to CellIdentityGsm Constructor
Add a parameter to the CellIdentityGsm constructor in
CellInfoUtil for compatibility with the new constructor.
Bug: 135921133
Test: compilation
Change-Id: Ieac136378821ecb2bbda278ebbbb2c8884871c61
Merged-In: Ieac136378821ecb2bbda278ebbbb2c8884871c61
diff --git a/src/com/android/phone/CellInfoUtil.java b/src/com/android/phone/CellInfoUtil.java
index 8272029..f6d741f 100644
--- a/src/com/android/phone/CellInfoUtil.java
+++ b/src/com/android/phone/CellInfoUtil.java
@@ -33,6 +33,7 @@
import com.android.internal.telephony.OperatorInfo;
+import java.util.Collections;
import java.util.List;
/**
@@ -149,7 +150,8 @@
mcc,
mnc,
operatorInfo.getOperatorAlphaLong(),
- operatorInfo.getOperatorAlphaShort());
+ operatorInfo.getOperatorAlphaShort(),
+ Collections.emptyList());
CellInfoGsm ci = new CellInfoGsm();
ci.setCellIdentity(cig);