Commit 6367ce00 authored by Quxl's avatar Quxl

x

parent 155976d8
......@@ -361,7 +361,11 @@ public class Util {
for(String key : keyName) {
Object obj = map.get(key);
if(obj != null) {
keys.add(String.valueOf(obj));
if(obj instanceof Date) {
keys.add(DateUtil.format((Date)obj));
} else {
keys.add(String.valueOf(obj));
}
}
}
String fullKey = StringUtil.join(bar, keys);
......
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