Commit 6f644eb1 authored by 张永's avatar 张永

1

parent 8e50777e
......@@ -1164,7 +1164,7 @@ public class StringUtil {
return object.toString();
}
public static boolean equals(String str1, String str2) {
public static boolean equals(Object str1, Object str2) {
return str1 == null ? str2 == null : str1.equals(str2);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment