vgritsenko 2003/10/07 09:08:33
Modified: src/blocks/batik/java/org/apache/cocoon/components/url
ParsedContextURLProtocolHandler.java
src/java/org/apache/cocoon/components/treeprocessor
InvokeContext.java
Log:
Fix javadoc
Revision Changes Path
1.3 +3 -3 cocoon-2.1/src/blocks/batik/java/org/apache/cocoon/components/url/ParsedContextURLProtocolHandler.java
Index: ParsedContextURLProtocolHandler.java
===================================================================
RCS file: /home/cvs/cocoon-2.1/src/blocks/batik/java/org/apache/cocoon/components/url/ParsedContextURLProtocolHandler.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ParsedContextURLProtocolHandler.java 11 Mar 2003 17:44:18 -0000 1.2
+++ ParsedContextURLProtocolHandler.java 7 Oct 2003 16:08:33 -0000 1.3
@@ -101,7 +101,7 @@
StringBuffer baseFile = new StringBuffer(ParsedContextURLProtocolHandler
.context.getRealPath("/"));
- if ( !baseFile.toString().endsWith("/")) {
+ if (!baseFile.toString().endsWith("/")) {
baseFile.append("/");
}
@@ -132,7 +132,7 @@
StringBuffer newURI = new StringBuffer("context://");
newURI.append(base.getPath());
- if ( !newURI.toString().endsWith("/") ) {
+ if (!newURI.toString().endsWith("/")) {
newURI.append("/");
}
1.4 +2 -2 cocoon-2.1/src/java/org/apache/cocoon/components/treeprocessor/InvokeContext.java
Index: InvokeContext.java
===================================================================
RCS file: /home/cvs/cocoon-2.1/src/java/org/apache/cocoon/components/treeprocessor/InvokeContext.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- InvokeContext.java 16 Aug 2003 13:30:04 -0000 1.3
+++ InvokeContext.java 7 Oct 2003 16:08:33 -0000 1.4
@@ -72,7 +72,7 @@
* <p>
* This class serves two purposes :
* <ul><li>Avoid explicit enumeration of all needed parameters in
- * {@link ProcessingNode#invoke(Environment, InvokeContext)},
+ * {@link ProcessingNode#invoke(org.apache.cocoon.environment.Environment, InvokeContext)},
* thus allowing easier addition of new parameters,
* <li>Hold pipelines, and provide "just in time" lookup for them.
* </ul>
|