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/06/18 21:15:08 UTC

svn commit: r548453 - in /incubator/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket: markup/html/form/login/InterceptTest.java resource/DummyApplication.java

Author: almaw
Date: Mon Jun 18 12:15:07 2007
New Revision: 548453

URL: http://svn.apache.org/viewvc?view=rev&rev=548453
Log:
Nuke dev mode warnings.

Modified:
    incubator/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/login/InterceptTest.java
    incubator/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/resource/DummyApplication.java

Modified: incubator/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/login/InterceptTest.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/login/InterceptTest.java?view=diff&rev=548453&r1=548452&r2=548453
==============================================================================
--- incubator/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/login/InterceptTest.java (original)
+++ incubator/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/markup/html/form/login/InterceptTest.java Mon Jun 18 12:15:07 2007
@@ -161,6 +161,11 @@
 		{
 			return new WebResponse(servletResponse);
 		}
+		
+		protected void outputDevelopmentModeWarning()
+		{
+			// Do nothing.
+		}
 	}
 
 	/**

Modified: incubator/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/resource/DummyApplication.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/resource/DummyApplication.java?view=diff&rev=548453&r1=548452&r2=548453
==============================================================================
--- incubator/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/resource/DummyApplication.java (original)
+++ incubator/wicket/trunk/jdk-1.4/wicket/src/test/java/org/apache/wicket/resource/DummyApplication.java Mon Jun 18 12:15:07 2007
@@ -38,4 +38,9 @@
 	{
 		return new WebResponse(servletResponse);
 	}
+	
+	protected void outputDevelopmentModeWarning()
+	{
+		// Do nothing.
+	}
 }