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

Commit 049c43f0 authored by Brad Ebinger's avatar Brad Ebinger Committed by Gerrit Code Review
Browse files

Merge "Add nullability annotations in accordance with the council"

parents 98868a71 1e411b5f
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
        }