mirror of
https://github.com/TonyJiangWJ/Auto.js.git
synced 2026-06-24 21:33:16 +08:00
19 lines
379 B
Java
19 lines
379 B
Java
package com.stardust.util;
|
|
|
|
public class ObjectHelper {
|
|
|
|
public static void requireNonNull(Object obj, String name){
|
|
if(obj == null){
|
|
throw new NullPointerException(name + " should not be null");
|
|
}
|
|
}
|
|
|
|
public static void requireNonNull(Object obj){
|
|
if(obj == null){
|
|
throw new NullPointerException();
|
|
}
|
|
}
|
|
|
|
|
|
}
|