Commit 13fe1447 by 许雪里 Committed by GitHub

Merge pull request #1197 from paopaofish/master

3rd argument is not used.
parents 6641be12 8bc19d44
...@@ -115,7 +115,7 @@ public class DateUtil { ...@@ -115,7 +115,7 @@ public class DateUtil {
Date date = getDateFormat(pattern).parse(dateString); Date date = getDateFormat(pattern).parse(dateString);
return date; return date;
} catch (Exception e) { } catch (Exception e) {
logger.warn("parse date error, dateString = {}, pattern={}; errorMsg = ", dateString, pattern, e.getMessage()); logger.warn("parse date error, dateString = {}, pattern={}; errorMsg = {}", dateString, pattern, e.getMessage());
return null; return null;
} }
} }
......
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 sign in to comment