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

Commit f472e23b authored by Daulet Zhanguzin's avatar Daulet Zhanguzin Committed by Android (Google) Code Review
Browse files

Merge "Replace com.android.internal.util.Preconditions.checkNotNull with...

Merge "Replace com.android.internal.util.Preconditions.checkNotNull with java.util.Objects.requireNonNull"
parents af3819cf f894cbbb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1719,7 +1719,7 @@ public class InputManagerService extends IInputManager.Stub
    // Binder call
    @Override
    public void setCustomPointerIcon(PointerIcon icon) {
        Preconditions.checkNotNull(icon);
        Objects.requireNonNull(icon);
        nativeSetCustomPointerIcon(mPtr, icon);
    }