Merge "Replace com.android.internal.util.Preconditions.checkNotNull with java.util.Objects.requireNonNull"
This commit is contained in:
committed by
Android (Google) Code Review
commit
f472e23be5
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user