修改所调用的 ObjectUtil#defaultIfNull 的重载版本

This commit is contained in:
ZhouXY108 2024-11-04 15:23:11 +08:00
parent 8b79d3caa3
commit 75b434fb49
8 changed files with 12 additions and 9 deletions

View File

@ -160,7 +160,7 @@ public class DateTime extends Date {
* @since 4.1.2
*/
public DateTime(Date date, TimeZone timeZone) {
this(ObjectUtil.defaultIfNull(date, new Date()).getTime(), timeZone);
this(ObjectUtil.defaultIfNull(date, () -> new Date()).getTime(), timeZone);
}
/**

View File

@ -117,7 +117,7 @@ public class FastByteArrayOutputStream extends OutputStream {
*/
public String toString(Charset charset) {
return new String(toByteArray(),
ObjectUtil.defaultIfNull(charset, CharsetUtil.defaultCharset()));
ObjectUtil.defaultIfNull(charset, () -> CharsetUtil.defaultCharset()));
}
}

View File

@ -59,7 +59,7 @@ public class PathMover {
}
this.src = src;
this.target = Assert.notNull(target, "Target path must be not null !");
this.options = ObjUtil.defaultIfNull(options, new CopyOption[]{});;
this.options = ObjUtil.defaultIfNull(options, () -> new CopyOption[]{});
}
/**

View File

@ -31,7 +31,7 @@ public class ResourceClassLoader<T extends Resource> extends SecureClassLoader {
*/
public ResourceClassLoader(ClassLoader parentClassLoader, Map<String, T> resourceMap) {
super(ObjectUtil.defaultIfNull(parentClassLoader, ClassLoaderUtil::getClassLoader));
this.resourceMap = ObjectUtil.defaultIfNull(resourceMap, new HashMap<>());
this.resourceMap = ObjectUtil.defaultIfNull(resourceMap, () -> new HashMap<>());
this.cacheClassMap = new HashMap<>();
}

View File

@ -54,7 +54,7 @@ public class UrlPath {
* @return 节点列表
*/
public List<String> getSegments() {
return ObjectUtil.defaultIfNull(this.segments, ListUtil.empty());
return ObjectUtil.defaultIfNull(this.segments, ListUtil::empty);
}
/**

View File

@ -142,7 +142,10 @@ public enum ClipboardMonitor implements ClipboardOwner, Runnable, Closeable {
if (isRunning) {
// 继续监听
clipboard.setContents(ObjectUtil.defaultIfNull(transferable, ObjectUtil.defaultIfNull(newContents, contents)), this);
clipboard.setContents(
ObjectUtil.defaultIfNull(transferable,
() -> ObjectUtil.defaultIfNull(newContents, contents)),
this);
}
}

View File

@ -389,7 +389,7 @@ public class TypeUtil {
if (null == field) {
return null;
}
return getActualType(ObjectUtil.defaultIfNull(type, field.getDeclaringClass()), field.getGenericType());
return getActualType(ObjectUtil.defaultIfNull(type, field::getDeclaringClass), field.getGenericType());
}
/**

View File

@ -105,8 +105,8 @@ public class JSONObject extends MapWrapper<String, Object> implements JSON, JSON
* @since 4.1.19
*/
public JSONObject(int capacity, JSONConfig config) {
super(InternalJSONUtil.createRawMap(capacity, ObjectUtil.defaultIfNull(config, JSONConfig.create())));
this.config = ObjectUtil.defaultIfNull(config, JSONConfig.create());
super(InternalJSONUtil.createRawMap(capacity, ObjectUtil.defaultIfNull(config, JSONConfig::create)));
this.config = ObjectUtil.defaultIfNull(config, JSONConfig::create);
}
/**