From 5fd38490e9907e60387d7d231713fe6e8eb61751 Mon Sep 17 00:00:00 2001 From: Johannes Hoermann <j.hoermann@adito.de> Date: Wed, 13 Nov 2019 16:44:26 +0100 Subject: [PATCH] remove warning on .begin as it's now marked as deprecated and the warning already occurs in code --- process/Sql_lib/process.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/process/Sql_lib/process.js b/process/Sql_lib/process.js index fad01349a3..7e630b7644 100644 --- a/process/Sql_lib/process.js +++ b/process/Sql_lib/process.js @@ -946,9 +946,6 @@ SqlBuilder._ERROR_UPDATE_VALUES_INVALID = function () */ SqlBuilder.begin = function () { - logging.log("Warning: using .begin is deprecated as it's now possible to write \"new SqlBuilder().select(...).from(...)....\"\n" - + "You can now use \"newSelect(...)\", \"newWhere(...)\", \"newWhereIfSet(...)\" or \"new SqlBuilder()\" to create a new SqlBuilder instance.\n" + - + "For further SqlBuilder usage see the documentation-property of the Sql_lib."); return new SqlBuilder(); } -- GitLab