File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
exist-core/src/main/java/org/exist/xquery/functions/fn Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 27
27
import org .exist .xquery .*;
28
28
import org .exist .xquery .value .*;
29
29
30
- import static org .exist .xquery .FunctionDSL .optManyParam ;
30
+ import static org .exist .xquery .FunctionDSL .optParam ;
31
31
import static org .exist .xquery .FunctionDSL .returnsOpt ;
32
32
import static org .exist .xquery .functions .fn .FnModule .functionSignature ;
33
33
37
37
*/
38
38
public class FunDocumentURI extends Function {
39
39
40
- private static final FunctionParameterSequenceType FS_PARAM_NODE = optManyParam ("value" , Type .NODE , "The document node." );
40
+ private static final FunctionParameterSequenceType FS_PARAM_NODE = optParam ("value" , Type .NODE , "The document node." );
41
41
42
42
private static final String FS_DOCUMENT_URI = "document-uri" ;
43
43
private static final String FS_DESCRIPTION = "Returns the URI of a resource where a document can be found, if available." ;
You can’t perform that action at this time.
0 commit comments