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

Commit 4a6dd7f3 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

Change-Id: If13a487f14c6382aad010a3776dec76f7bf46738
parents 3c205266 049c43f0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7397,7 +7397,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
        }