baoshiwei
2025-05-20 eafecc3ac0227960f2b8fa377be27f066e10e50f
ruoyi-common/ruoyi-common-core/src/main/java/org/dromara/common/core/utils/ObjectUtils.java
@@ -44,19 +44,6 @@
    }
    /**
     * 如果值不为空,则返回值
     *
     * @param obj          对象
     * @return 对象字段
     */
    public static <T> T notNull(T obj) {
        if (isNotNull(obj)) {
            return obj;
        }
        return null;
    }
    /**
     * 如果值不为空,则返回值,否则返回默认值
     *
     * @param obj          对象