Author: knopp
Date: Sat May  5 09:18:33 2007
New Revision: 535545

URL: http://svn.apache.org/viewvc?view=rev&rev=535545
Log:
Commented System.err code 

Modified:
    
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/FilePageStore.java

Modified: 
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/FilePageStore.java
URL: 
http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/FilePageStore.java?view=diff&rev=535545&r1=535544&r2=535545
==============================================================================
--- 
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/FilePageStore.java
 (original)
+++ 
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/FilePageStore.java
 Sat May  5 09:18:33 2007
@@ -651,7 +651,7 @@
        private byte[] serializePage(SessionPageKey key, Page page)
        {
                byte[] bytes = null;
-               System.err.println("SERIALIZING " + key);
+               //System.err.println("SERIALIZING " + key);
                long t1 = System.currentTimeMillis();
                Page.serializer.set(new PageSerializer(key));
                try
@@ -670,13 +670,13 @@
                {
                        Page.serializer.set(null);
                }
-               System.err.println("SERIALIZING " + key + " bytes: " + bytes);
+               //System.err.println("SERIALIZING " + key + " bytes: " + bytes);
                return bytes;
        }
 
        private byte[] testMap(final SessionPageKey currentKey)
        {
-               System.err.println("TESTMAP:" + currentKey);
+               //System.err.println("TESTMAP:" + currentKey);
                byte[] bytes = null;
                List list = (List)pagesToBeSerialized.get(currentKey.sessionId);
                if (list == null)


Reply via email to