cziegeler 2003/06/24 05:55:13
Modified: src/java/org/apache/cocoon/components/source/impl
SitemapSource.java
Log:
Fixing double invocation of internal pipelines
Revision Changes Path
1.7 +1 -7
cocoon-2.1/src/java/org/apache/cocoon/components/source/impl/SitemapSource.java
Index: SitemapSource.java
===================================================================
RCS file:
/home/cvs/cocoon-2.1/src/java/org/apache/cocoon/components/source/impl/SitemapSource.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- SitemapSource.java 7 Jun 2003 20:49:24 -0000 1.6
+++ SitemapSource.java 24 Jun 2003 12:55:13 -0000 1.7
@@ -294,12 +294,6 @@
* Return the unique identifer for this source
*/
public String getURI() {
- if (this.needsRefresh) {
- this.refresh();
- }
- if (this.redirectSource != null) {
- return this.systemId;
- }
return this.systemIdForCaching;
}