You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by al...@apache.org on 2007/04/13 04:42:41 UTC

svn commit: r528328 - /incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java

Author: almaw
Date: Thu Apr 12 19:42:40 2007
New Revision: 528328

URL: http://svn.apache.org/viewvc?view=rev&rev=528328
Log:
Fix spelling/typo for dirty objects.

Modified:
    incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java?view=diff&rev=528328&r1=528327&r2=528328
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/Session.java Thu Apr 12 19:42:40 2007
@@ -1324,7 +1324,7 @@
 		if (touchedPages != null && touchedPages.size() > 0)
 		{
 			log
-					.warn("There where still touched pages in the request detach phase, session update wasn't called: "
+					.warn("There were still touched pages in the request detach phase, session update wasn't called: "
 							+ touchedPages);
 		}
 
@@ -1333,7 +1333,7 @@
 		if (dirtyObjects != null && dirtyObjects.size() > 0)
 		{
 			log
-					.warn("There where still dirty objects in the request detach phase, session update wasn't called: "
+					.warn("There were still dirty objects in the request detach phase, session update wasn't called: "
 							+ dirtyObjects);
 		}