You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by ba...@apache.org on 2007/01/29 20:18:27 UTC

svn commit: r501149 - /jakarta/taglibs/proper/standard/trunk/test/org/apache/taglibs/standard/tag/ImportTagTest/core/Test37466.java

Author: bayard
Date: Mon Jan 29 11:18:26 2007
New Revision: 501149

URL: http://svn.apache.org/viewvc?view=rev&rev=501149
Log:
Fixed autoboxing

Modified:
    jakarta/taglibs/proper/standard/trunk/test/org/apache/taglibs/standard/tag/ImportTagTest/core/Test37466.java

Modified: jakarta/taglibs/proper/standard/trunk/test/org/apache/taglibs/standard/tag/ImportTagTest/core/Test37466.java
URL: http://svn.apache.org/viewvc/jakarta/taglibs/proper/standard/trunk/test/org/apache/taglibs/standard/tag/ImportTagTest/core/Test37466.java?view=diff&rev=501149&r1=501148&r2=501149
==============================================================================
--- jakarta/taglibs/proper/standard/trunk/test/org/apache/taglibs/standard/tag/ImportTagTest/core/Test37466.java (original)
+++ jakarta/taglibs/proper/standard/trunk/test/org/apache/taglibs/standard/tag/ImportTagTest/core/Test37466.java Mon Jan 29 11:18:26 2007
@@ -38,7 +38,7 @@
 
     public void test37466() throws Exception {
 	String serverName = pageContext.getRequest().getServerName();
-	Integer serverPort = pageContext.getRequest().getServerPort();
+	int serverPort = pageContext.getRequest().getServerPort();
 	String contextPath = ( (HttpServletRequest) pageContext.getRequest() ).getContextPath();
 	String jspPath = TestUtil.getTestJsp(this);
 	String testPath = "http://" + serverName + ":" + serverPort + contextPath + jspPath;;



---------------------------------------------------------------------
To unsubscribe, e-mail: taglibs-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: taglibs-dev-help@jakarta.apache.org