vgritsenko 2003/09/25 05:54:21
Modified: src/java/org/apache/cocoon/components/source SourceUtil.java
Log:
javadoc fixes
Revision Changes Path
1.8 +4 -8
cocoon-2.1/src/java/org/apache/cocoon/components/source/SourceUtil.java
Index: SourceUtil.java
===================================================================
RCS file:
/home/cvs/cocoon-2.1/src/java/org/apache/cocoon/components/source/SourceUtil.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- SourceUtil.java 3 Sep 2003 15:00:57 -0000 1.7
+++ SourceUtil.java 25 Sep 2003 12:54:21 -0000 1.8
@@ -271,7 +271,6 @@
/**
* Generates a DOM from the given source
* @param source The data
- * @param manager Component manager.
*
* @return Created DOM document.
*
@@ -280,15 +279,13 @@
* @throws SAXException If a SAX exception occurs.
*/
static public Document toDOM(Source source)
- throws SAXException, IOException,
- ProcessingException {
+ throws SAXException, IOException, ProcessingException {
DOMBuilder builder = new DOMBuilder();
toSAX(source, builder);
Document document = builder.getDocument();
-
- if (document==null) {
+ if (document == null) {
throw new ProcessingException("Could not build DOM for '"+
source.getURI()+"'");
}
@@ -458,12 +455,11 @@
* @param typeParameters Type of Source query. Currently, only
* <code>method</code> parameter (value typically <code>GET</code> or
* <code>POST</code>) is recognized. May be <code>null</code>.
- * @param resourceParameters Parameters (e.g. URL params) of the source.
+ * @param parameters Parameters (e.g. URL params) of the source.
* May be <code>null</code>
* @param frag DOM fragment to serialize to the Source
* @param resolver Resolver for the source.
* @param serializerName
- * @param manager
*
* @throws ProcessingException
*/