You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2007/02/21 19:06:45 UTC

svn commit: r510129 - in /tapestry/tapestry5/tapestry-core/trunk: pom.xml src/main/java/org/apache/tapestry/internal/services/ContextImpl.java

Author: hlship
Date: Wed Feb 21 10:06:43 2007
New Revision: 510129

URL: http://svn.apache.org/viewvc?view=rev&rev=510129
Log:
Fix error in POM linking to tapestry-component-report.
Remove System.err output from ContextImpl.

Modified:
    tapestry/tapestry5/tapestry-core/trunk/pom.xml
    tapestry/tapestry5/tapestry-core/trunk/src/main/java/org/apache/tapestry/internal/services/ContextImpl.java

Modified: tapestry/tapestry5/tapestry-core/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-core/trunk/pom.xml?view=diff&rev=510129&r1=510128&r2=510129
==============================================================================
--- tapestry/tapestry5/tapestry-core/trunk/pom.xml (original)
+++ tapestry/tapestry5/tapestry-core/trunk/pom.xml Wed Feb 21 10:06:43 2007
@@ -132,7 +132,7 @@
             <plugin>
                 <groupId>org.apache.tapestry</groupId>
                 <artifactId>tapestry-component-report</artifactId>
-                <version>${component-report-version}</version>
+                <version>5.0.2-SNAPSHOT</version>
                 <configuration>
                     <rootPackage>org.apache.tapestry.corelib</rootPackage>
                 </configuration>                

Modified: tapestry/tapestry5/tapestry-core/trunk/src/main/java/org/apache/tapestry/internal/services/ContextImpl.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-core/trunk/src/main/java/org/apache/tapestry/internal/services/ContextImpl.java?view=diff&rev=510129&r1=510128&r2=510129
==============================================================================
--- tapestry/tapestry5/tapestry-core/trunk/src/main/java/org/apache/tapestry/internal/services/ContextImpl.java (original)
+++ tapestry/tapestry5/tapestry-core/trunk/src/main/java/org/apache/tapestry/internal/services/ContextImpl.java Wed Feb 21 10:06:43 2007
@@ -66,8 +66,6 @@
         {
             String current = queue.pop();
 
-            System.err.println("Searching: " + current);
-
             Set<String> matches = (Set<String>) _servletContext.getResourcePaths(current);
 
             // Tomcat 5.5.20 inside JBoss 4.0.2 has been observed to do this!
@@ -78,8 +76,6 @@
 
             for (String match : matches)
             {
-                System.err.println("Found: " + match);
-
                 // Folders are queued up for further expansion.
 
                 if (match.endsWith("/"))