From ea682d6a85ef8e1b58c7f7c2d296b357f9e41ca8 Mon Sep 17 00:00:00 2001 From: Johannes Hoermann <j.hoermann@adito.de> Date: Tue, 8 Jan 2019 15:17:06 +0100 Subject: [PATCH] remove deprecated util --- process/Util_lib/process.js | 45 ------------------------------------- 1 file changed, 45 deletions(-) diff --git a/process/Util_lib/process.js b/process/Util_lib/process.js index 11f3366f5d..b27d5d9c3c 100644 --- a/process/Util_lib/process.js +++ b/process/Util_lib/process.js @@ -406,48 +406,3 @@ NumberSequencingUtils.getMaxUniqueNumber = function(pColumn, pTable, pCondition) var maxNum = db.cell("select max(" + pColumn + ") from " + pTable + condition); return maxNum == "" ? "0" : maxNum; } - -/** - * Class containing miscellaneous utiltiy function extending JDito - * @class - * @deprecated - * @todo: remove - */ -function JDitoUtils() -{ - /** - * Returns a list of aliasNames with a given type - * ignores errors when an alias is not confgiured (empty) - * - * @param {project.DATASOURCE_} pAliasType opt the type of the aliases to load - * - * @return {String[]} Array of aliasNames - */ - this.getAliasListByType = function(pAliasType) - { - pAliasType = pAliasType || project.DATASOURCE_DB; - - var allDbAliases = project.getDataModels(project.DATAMODEL_KIND_ALIAS); - var dbAliases = []; - - for (var i = 0, j = allDbAliases.length; i < j; i++) - { - var aliasName = allDbAliases[i][0]; - var alias = null; - try - { - alias = project.getAliasModel(aliasName); - } - catch(ex) - { - logging.log(translate.withArguments("Der Alias \"%0\" konnte nicht geladen werden. Eventuell wurde er nicht konfiguriert", [aliasName])); - logging.log(ex); - } - - if (alias != null && alias[project.ALIAS_DATASOURCETYPE] == pAliasType) - dbAliases.push(aliasName); - } - - return dbAliases; - } -} -- GitLab