From c1b3f84e51d37184f7e53eba82472f21ce4ce5e9 Mon Sep 17 00:00:00 2001 From: Joe Wicentowski Date: Mon, 18 May 2026 12:13:01 -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) --- .../org/exist/xquery/modules/httpclient/HttpClientModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/exist/xquery/modules/httpclient/HttpClientModule.java b/src/main/java/org/exist/xquery/modules/httpclient/HttpClientModule.java index f546c1b..48cdce5 100644 --- a/src/main/java/org/exist/xquery/modules/httpclient/HttpClientModule.java +++ b/src/main/java/org/exist/xquery/modules/httpclient/HttpClientModule.java @@ -71,7 +71,7 @@ public class HttpClientModule extends AbstractInternalModule { ); public HttpClientModule(final Map> parameters) { - super(functions, parameters, true); + super(functions, parameters); } @Override