commit | 363bb087bb23635ebff0d4f5ab71efcc99a5ecf7 | [log] [tgz] |
---|---|---|
author | Sarah Chin <sarahchin@google.com> | Mon Jan 31 11:22:36 2022 -0800 |
committer | Sarah Chin <sarahchin@google.com> | Mon Jan 31 11:22:38 2022 -0800 |
tree | e612bb842848151020c185f9265afa7f70c2fc33 | |
parent | 350d762bcc65b4021b1124150cc0f4775f7061f7 [diff] |
Make TrafficDescriptor nonnull in DataProfileInfo Test: build Bug: 215717256 Change-Id: I02a5d5fbcc0a3ae22431fcc8615ac68d6df7b628
diff --git a/radio/aidl/aidl_api/android.hardware.radio.data/current/android/hardware/radio/data/DataProfileInfo.aidl b/radio/aidl/aidl_api/android.hardware.radio.data/current/android/hardware/radio/data/DataProfileInfo.aidl index c8efea0..94ed242 100644 --- a/radio/aidl/aidl_api/android.hardware.radio.data/current/android/hardware/radio/data/DataProfileInfo.aidl +++ b/radio/aidl/aidl_api/android.hardware.radio.data/current/android/hardware/radio/data/DataProfileInfo.aidl
@@ -53,7 +53,7 @@ boolean preferred; boolean persistent; boolean alwaysOn; - @nullable android.hardware.radio.data.TrafficDescriptor trafficDescriptor; + android.hardware.radio.data.TrafficDescriptor trafficDescriptor; const int ID_DEFAULT = 0; const int ID_TETHERED = 1; const int ID_IMS = 2;
diff --git a/radio/aidl/android/hardware/radio/data/DataProfileInfo.aidl b/radio/aidl/android/hardware/radio/data/DataProfileInfo.aidl index 7360202..84201d3 100644 --- a/radio/aidl/android/hardware/radio/data/DataProfileInfo.aidl +++ b/radio/aidl/android/hardware/radio/data/DataProfileInfo.aidl
@@ -130,5 +130,5 @@ * it does not specify the end point to be used for the data call. The end point is specified by * apn; apn must be used as the end point if one is not specified through URSP rules. */ - @nullable TrafficDescriptor trafficDescriptor; + TrafficDescriptor trafficDescriptor; }