remm 2003/01/04 04:42:33 Modified: util/java/org/apache/tomcat/util/http FastHttpDateFormat.java Log: - Fix caching bug (caused by cut and paste abuse). Revision Changes Path 1.3 +1 -1 jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/http/FastHttpDateFormat.java Index: FastHttpDateFormat.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/http/FastHttpDateFormat.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- FastHttpDateFormat.java 3 Jan 2003 19:31:00 -0000 1.2 +++ FastHttpDateFormat.java 4 Jan 2003 12:42:33 -0000 1.3 @@ -199,7 +199,7 @@ Long cachedDate = null; try { - cachedDate = (Long) formatCache.get(value); + cachedDate = (Long) parseCache.get(value); } catch (Exception e) { } if (cachedDate != null)
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>