Author: thrantal
Date: Sat Jul 12 12:42:58 2008
New Revision: 676224
URL: http://svn.apache.org/viewvc?rev=676224&view=rev
Log:
Removed unnecessary semicolon and a couple of redundant thises
- no functional changes
Modified:
wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/MockWebApplication.java
wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/protocol/http/MockWebApplicationTest.java
Modified:
wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/MockWebApplication.java
URL:
http://svn.apache.org/viewvc/wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/MockWebApplication.java?rev=676224&r1=676223&r2=676224&view=diff
==============================================================================
---
wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/MockWebApplication.java
(original)
+++
wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/MockWebApplication.java
Sat Jul 12 12:42:58 2008
@@ -147,7 +147,7 @@
public WebApplication
createApplication(WicketFilter filter)
{
return application;
- };
+ }
};
}
};
Modified:
wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/protocol/http/MockWebApplicationTest.java
URL:
http://svn.apache.org/viewvc/wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/protocol/http/MockWebApplicationTest.java?rev=676224&r1=676223&r2=676224&view=diff
==============================================================================
---
wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/protocol/http/MockWebApplicationTest.java
(original)
+++
wicket/branches/wicket-1.3.x/jdk-1.4/wicket/src/test/java/org/apache/wicket/protocol/http/MockWebApplicationTest.java
Sat Jul 12 12:42:58 2008
@@ -86,7 +86,7 @@
{
// Validate the document
String document =
application.getServletResponse().getDocument();
- DiffUtil.validatePage(document, this.getClass(),
"MockPage_expectedResult.html", true);
+ DiffUtil.validatePage(document, getClass(),
"MockPage_expectedResult.html", true);
// Inspect the page & model
MockPage p = (MockPage)application.getLastRenderedPage();
@@ -139,7 +139,7 @@
*/
// Validate the document
String document =
application.getServletResponse().getDocument();
- DiffUtil.validatePage(document, this.getClass(),
"MockPage_expectedResult2.html", true);
+ DiffUtil.validatePage(document, getClass(),
"MockPage_expectedResult2.html", true);
// Inspect the page & model
p = (MockPage)application.getLastRenderedPage();