From 4f388a43db28213ec55bdb55912c1061f85ba775 Mon Sep 17 00:00:00 2001 From: Adam Retter Date: Wed, 16 Jul 2025 22:02:25 +0200 Subject: [PATCH] [bugfix] Remove the disclaimer from the startup of the JAC --- .../src/main/java/org/exist/client/InteractiveClient.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/exist-core/src/main/java/org/exist/client/InteractiveClient.java b/exist-core/src/main/java/org/exist/client/InteractiveClient.java index 177238f99f..21222b24e3 100644 --- a/exist-core/src/main/java/org/exist/client/InteractiveClient.java +++ b/exist-core/src/main/java/org/exist/client/InteractiveClient.java @@ -2557,12 +2557,6 @@ public String getNotice() { builder.append(Calendar.getInstance().get(Calendar.YEAR)); builder.append(" Evolved Binary Ltd"); builder.append(EOL); - builder.append("Elemental comes with ABSOLUTELY NO WARRANTY."); - builder.append(EOL); - builder.append("This is free software, and you are welcome to redistribute it"); - builder.append(EOL); - builder.append("under certain conditions; for details read the license file."); - builder.append(EOL); return builder.toString(); }