Author: ehillenius
Date: Thu Jun 14 14:12:14 2007
New Revision: 547403

URL: http://svn.apache.org/viewvc?view=rev&rev=547403
Log:
removed stale warning

Modified:
    
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java

Modified: 
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java
URL: 
http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java?view=diff&rev=547403&r1=547402&r2=547403
==============================================================================
--- 
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java
 (original)
+++ 
incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java
 Thu Jun 14 14:12:14 2007
@@ -340,7 +340,8 @@
        private MetaDataEntry[] metaData;
 
        /**
-        * We need to know both thread that keeps the pagemap lock and the 
RequestCycle
+        * We need to know both thread that keeps the pagemap lock and the
+        * RequestCycle
         */
        private static class PageMapsUsedInRequestEntry
        {
@@ -412,9 +413,6 @@
         * it was not bound yet. It is useful for cases where you want to be
         * absolutely sure this session object will be available in next 
requests.
         * </p>
-        * <p>
-        * This method should not typically be called by clients
-        * </p>
         */
        public final void bind()
        {
@@ -690,7 +688,8 @@
                                {
                                        if 
(isCurrentRequestValid(entry.requestCycle) == false)
                                        {
-                                               // we need to ignore this 
request. That's because it is an ajax request
+                                               // we need to ignore this 
request. That's because it is
+                                               // an ajax request
                                                // while regular page request 
is being processed
                                                throw new 
IgnoreAjaxRequestException();
                                        }
@@ -1340,11 +1339,6 @@
                // If state is dirty
                if (dirty)
                {
-                       if (log.isDebugEnabled())
-                       {
-                               log.debug("update: Session is dirty.  
Replicating.");
-                       }
-
                        // State is no longer dirty
                        this.dirty = false;
 


Reply via email to