Return-Path: Delivered-To: apmail-jakarta-tomcat-dev-archive@jakarta.apache.org Received: (qmail 32396 invoked by uid 500); 27 May 2001 19:30:12 -0000 Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: tomcat-dev@jakarta.apache.org Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 32387 invoked from network); 27 May 2001 19:30:12 -0000 User-Agent: Microsoft-Entourage/9.0.1.3108 Date: Sun, 27 May 2001 12:30:15 -0700 Subject: Re: cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/util/buf DateTool.java From: Jon Stevens To: tomcat-dev Message-ID: In-Reply-To: <20010526171854.4296.qmail@apache.org> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N on 5/26/01 10:18 AM, "costin@apache.org" wrote: > + // Called from MessageBytes.setTime > + /** > + */ > + public static String format1123( Date d ) { > + return rfc1123Format.format( d ); > + } > + > + > + // Called from ServerCookie > + /** > + */ > + public static void formatOldCookie( Date d, StringBuffer sb, > + FieldPosition fp ) > + { > + oldCookieFormat.format( d, sb, fp ); > + } > + > + // Called from ServerCookie > + public static String formatOldCookie( Date d ) > + { > + return oldCookieFormat.format( d ); > } I thought we weren't using tab's in the files anymore... -jon