Author: markt
Date: Fri Nov 16 12:11:12 2007
New Revision: 595804

URL: http://svn.apache.org/viewvc?rev=595804&view=rev
Log:
Fix bug 43702. Inner class files have unnecessarily long names.

Modified:
    tomcat/tc6.0.x/trunk/STATUS.txt
    tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/Generator.java
    tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml

Modified: tomcat/tc6.0.x/trunk/STATUS.txt
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=595804&r1=595803&r2=595804&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/STATUS.txt (original)
+++ tomcat/tc6.0.x/trunk/STATUS.txt Fri Nov 16 12:11:12 2007
@@ -32,11 +32,6 @@
   -1: funkman InetAddress.getLocalHost() != localhost - it should be
             InetAddress.getByName("localhost").getHostAddress()
 
-* Fix BZ 43702 - Inner class files have unnecessarily long names
-  http://people.apache.org/~markt/patches/2007-10-30-Bug43702.patch
-  +1: markt, remm, fhanik, pero
-  -1:
-
 * Add tests for the cookie parsing.
   http://people.apache.org/~jfclere/patches/test_cookies.patch
   +1: jfclere

Modified: tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/Generator.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/Generator.java?rev=595804&r1=595803&r2=595804&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/Generator.java 
(original)
+++ tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/Generator.java Fri Nov 
16 12:11:12 2007
@@ -3309,9 +3309,7 @@
         charArrayBuffer = null;
         err = compiler.getErrorDispatcher();
         ctxt = compiler.getCompilationContext();
-        fragmentHelperClass = new FragmentHelperClass(ctxt
-                .getServletClassName()
-                + "Helper");
+        fragmentHelperClass = new FragmentHelperClass("Helper");
         pageInfo = compiler.getPageInfo();
 
         /*

Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml?rev=595804&r1=595803&r2=595804&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Fri Nov 16 12:11:12 2007
@@ -62,6 +62,9 @@
       <fix>
         <bug>43675</bug>: Fix a possible logging related classloader leak. 
(markt)
       </fix>
+      <fix>
+        <bug>43702</bug>: Inner class files have unnecessarily long names. 
(markt)
+      </fix>
     </changelog>
   </subsection>
 </section>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to