From cdae6726e1deb65d49e4ab269684d6b5b21e9bbe Mon Sep 17 00:00:00 2001 From: Tatu Saloranta Date: Fri, 6 Mar 2020 09:00:50 -0800 Subject: [PATCH] minor comment add wrt #2643 --- .../java/com/fasterxml/jackson/databind/util/StdDateFormat.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/com/fasterxml/jackson/databind/util/StdDateFormat.java b/src/main/java/com/fasterxml/jackson/databind/util/StdDateFormat.java index 3a5a8cf5d3..84a7feee30 100644 --- a/src/main/java/com/fasterxml/jackson/databind/util/StdDateFormat.java +++ b/src/main/java/com/fasterxml/jackson/databind/util/StdDateFormat.java @@ -487,6 +487,8 @@ protected void _format(TimeZone tz, Locale loc, Date date, } else { // 24-Jun-2017, tatu: While `Z` would be conveniently short, older specs // mandate use of full `+0000` + // 06-Mar-2020, tatu: Actually statement should read "for compatibility reasons" + // and not standards (unless it is wrt RFC-1123). This will change in 3.0 at latest // formatted.append('Z'); if( _tzSerializedWithColon ) { buffer.append("+00:00");