Merge "Fixed service state CTS test failing"

This commit is contained in:
Treehugger Robot
2018-02-23 15:41:32 +00:00
committed by Gerrit Code Review

View File

@@ -339,6 +339,8 @@ public class ServiceState implements Parcelable {
mIsEmergencyOnly = s.mIsEmergencyOnly;
mIsDataRoamingFromRegistration = s.mIsDataRoamingFromRegistration;
mIsUsingCarrierAggregation = s.mIsUsingCarrierAggregation;
mChannelNumber = s.mChannelNumber;
mCellBandwidths = Arrays.copyOf(s.mCellBandwidths, s.mCellBandwidths.length);
mLteEarfcnRsrpBoost = s.mLteEarfcnRsrpBoost;
mNetworkRegistrationStates = new ArrayList<>(s.mNetworkRegistrationStates);
}