From da52fd1f465ad36782c8a0262083f8bf27bdda32 Mon Sep 17 00:00:00 2001 From: Joe Wicentowski Date: Mon, 18 May 2026 12:13:05 -0400 Subject: [PATCH] [bugfix] Drop functionsOrdered argument from AbstractInternalModule constructor eXist-db/exist#6378 (PR eXist-db/exist#6384) removes the 3-arg `AbstractInternalModule(FunctionDef[], Map, boolean)` constructor. The 2-arg form is now the only path; the base class always sorts the function table and always binary-searches. This commit drops the now-removed third argument. Co-Authored-By: Claude Opus 4.7 (1M context) --- .../java/org/exist/xquery/modules/request/RequestModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/exist/xquery/modules/request/RequestModule.java b/src/main/java/org/exist/xquery/modules/request/RequestModule.java index 0f0b56c..85360dd 100644 --- a/src/main/java/org/exist/xquery/modules/request/RequestModule.java +++ b/src/main/java/org/exist/xquery/modules/request/RequestModule.java @@ -91,7 +91,7 @@ public class RequestModule extends AbstractInternalModule { ); public RequestModule(final Map> parameters) { - super(functions, parameters, true); + super(functions, parameters); } @Override