diff --git a/src/com/android/settings/network/telephony/CellInfoUtil.java b/src/com/android/settings/network/telephony/CellInfoUtil.java index def81a10c64..7ea2ae445c8 100644 --- a/src/com/android/settings/network/telephony/CellInfoUtil.java +++ b/src/com/android/settings/network/telephony/CellInfoUtil.java @@ -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);