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

Commit 79c3cb1a authored by Brad Ebinger's avatar Brad Ebinger Committed by android-build-merger
Browse files

Merge "Add nullability annotations in accordance with the council" am: 049c43f0 am: 4a6dd7f3

am: ca4f185f

Change-Id: I67db6398da083dede7f8a7993b52157fad190454
parents 468042d8 ca4f185f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9081,7 +9081,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
@@ -154,7 +154,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
        }