forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
433 B
15 lines
433 B
package com.fanruan.api.util; |
|
|
|
import com.fr.general.ComparatorUtils; |
|
|
|
public class ComparatorKit { |
|
/** |
|
* 比较两个Object对象是否相等 |
|
* @param object1 第一个Object对象 |
|
* @param object2 第二个Object对象 |
|
* @return 相等返回True 不相等返回False |
|
*/ |
|
public static boolean equals(Object object1, Object object2){ |
|
return ComparatorUtils.equals(object1, object2); |
|
} |
|
}
|
|
|