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

Commit 2384444f authored by Alex Kershaw's avatar Alex Kershaw Committed by Android (Google) Code Review
Browse files

Merge "Add @NonNull to parameter."

parents 8c84b92e 16dfa6fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6963,7 +6963,7 @@ package android.app.admin {
  public abstract static class DevicePolicyManager.InstallSystemUpdateCallback {
    ctor public DevicePolicyManager.InstallSystemUpdateCallback();
    method public void onInstallUpdateError(int, String);
    method public void onInstallUpdateError(int, @NonNull String);
    field public static final int UPDATE_ERROR_BATTERY_LOW = 5; // 0x5
    field public static final int UPDATE_ERROR_FILE_NOT_FOUND = 4; // 0x4
    field public static final int UPDATE_ERROR_INCORRECT_OS_VERSION = 2; // 0x2
+1 −1
Original line number Diff line number Diff line
@@ -2166,7 +2166,7 @@ public class DevicePolicyManager {
         * reported back to the IT admin to be read.
         */
        public void onInstallUpdateError(
                @InstallUpdateCallbackErrorConstants int errorCode, String errorMessage) {
                @InstallUpdateCallbackErrorConstants int errorCode, @NonNull String errorMessage) {
        }
    }