Skip to content

Commit b973763

Browse files
committed
[doc] Fix Java 8 JavaDoc errors
1 parent 0023fee commit b973763

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

exist-core/src/main/java/org/exist/http/RESTServer.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,6 @@ private String getParameter(final HttpServletRequest request, final RESTServerPa
250250
*
251251
* <li>_xsl: an URI pointing to an XSL stylesheet that will be applied to
252252
* the returned XML.</li>
253-
* </ul>
254253
*
255254
* <li>_output-doctype: if set to "yes", the returned XML will include
256255
* a Document Type Declaration if one is present, if "no" the Document Type Declaration will be omitted.</li>

exist-core/src/main/java/org/exist/xquery/functions/fn/FunSerialize.java

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,14 @@ private static boolean isSerializationParametersElement(final Item item) {
131131
* <a href="http://www.w3.org/TR/xslt-xquery-serialization-30/#serdm">XSLT and XQuery Serialization 3.0 - Sequence Normalization</a>.
132132
*
133133
* @param callingExpr the expression from which the function is called.
134-
* needed for error reporting
135-
* @param context current context
136-
* @param input non-normalized sequence
137-
* @param itemSeparator placed between each item
138-
* @return normalized sequence
139-
* @throws XPathException in case of dynamic error
134+
* Needed for error reporting
135+
* @param context current context.
136+
* @param input non-normalized sequence.
137+
* @param itemSeparator the item separator placed between each item.
138+
*
139+
* @return normalized sequence.
140+
*
141+
* @throws XPathException in case of dynamic error.
140142
*/
141143
public static Sequence normalize(final Expression callingExpr, final XQueryContext context, final Sequence input, final String itemSeparator) throws XPathException {
142144
if (input.isEmpty())

exist-core/src/main/java/org/exist/xquery/value/Sequence.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,8 @@ default int getItemCount() {
347347
*
348348
* NOTE that comparison is done via object equality.
349349
*
350-
* @param item the item for which to search
350+
* @param item the item to look for in the sequence.
351+
*
351352
* @return true if the item is within the sequence, false otherwise.
352353
*/
353354
boolean contains(Item item);

0 commit comments

Comments
 (0)