Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1e411b5f authored by Brad Ebinger's avatar Brad Ebinger
Browse files

Add nullability annotations in accordance with the council

Bug: 126702532
Test: atest FrameworksTelephonyTests
Change-Id: I7c3707d7599ec0e2a1d1ec2e70588765aea5d069
parent 8bf13f06
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7400,7 +7400,7 @@ package android.telephony.ims {
  public static class ProvisioningManager.Callback {
    ctor public ProvisioningManager.Callback();
    method public void onProvisioningIntChanged(int, int);
    method public void onProvisioningStringChanged(int, String);
    method public void onProvisioningStringChanged(int, @NonNull String);
  }
}
+1 −1
Original line number Diff line number Diff line
@@ -153,7 +153,7 @@ public class ProvisioningManager {
         * @param item the IMS provisioning key constant, as defined by the OEM.
         * @param value the new String value of the IMS configuration constant.
         */
        public void onProvisioningStringChanged(int item, String value) {
        public void onProvisioningStringChanged(int item, @NonNull String value) {
            // Base Implementation
        }