You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by pi...@apache.org on 2004/09/27 17:15:24 UTC

svn commit: rev 47296 - cocoon/trunk/src/blocks/scratchpad/java/org/apache/cocoon/generation

Author: pier
Date: Mon Sep 27 08:15:23 2004
New Revision: 47296

Modified:
   cocoon/trunk/src/blocks/scratchpad/java/org/apache/cocoon/generation/RequestParameterGenerator.java
Log:
Removing debugging code

Modified: cocoon/trunk/src/blocks/scratchpad/java/org/apache/cocoon/generation/RequestParameterGenerator.java
==============================================================================
--- cocoon/trunk/src/blocks/scratchpad/java/org/apache/cocoon/generation/RequestParameterGenerator.java	(original)
+++ cocoon/trunk/src/blocks/scratchpad/java/org/apache/cocoon/generation/RequestParameterGenerator.java	Mon Sep 27 08:15:23 2004
@@ -17,8 +17,6 @@
 
 import java.io.IOException;
 import java.io.Serializable;
-import java.text.SimpleDateFormat;
-import java.util.Date;
 import java.util.Enumeration;
 import java.util.Iterator;
 import java.util.Set;
@@ -150,11 +148,6 @@
         /* Start the document, associate prefix, and print core elements */
         AttributesImpl attributes = new AttributesImpl();
         this.xmlConsumer.startDocument();
-
-        /* TODO: remove this debugging code */
-        String date = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss.SSS").format(new Date());
-        this.xmlConsumer.comment(date.toCharArray(), 0, date.length());
-        
         this.xmlConsumer.startPrefixMapping(PREFIX, URI);
         this.xmlConsumer.startElement(URI, E_REQ_L, E_REQ_Q, attributes);
         this.xmlConsumer.startElement(URI, E_PARAMS_L, E_PARAMS_Q, attributes);