From 120788e131c3eb714bd50e3d5ed074d3d822e15d Mon Sep 17 00:00:00 2001 From: Deuce <shurd@sasktel.net> Date: Mon, 25 Jan 2021 23:35:54 -0500 Subject: [PATCH] Remove debug prints. --- exec/load/inihelper.js | 1 - exec/load/sbbsini.js | 1 - 2 files changed, 2 deletions(-) diff --git a/exec/load/inihelper.js b/exec/load/inihelper.js index 047184223c..cf29e11c4d 100644 --- a/exec/load/inihelper.js +++ b/exec/load/inihelper.js @@ -41,7 +41,6 @@ File.prototype.iniGetEnum = function(section, k, enum, def) { txt = txt.replace(/^\s+|\s+$/gm, '').toLowerCase(); for (i = 0; i < enum.length; i++) { if (enum[i].toLowerCase() === txt) { -print("iniGetEnum() = "+i); return i; } } diff --git a/exec/load/sbbsini.js b/exec/load/sbbsini.js index ab720f6aff..3171a16b54 100644 --- a/exec/load/sbbsini.js +++ b/exec/load/sbbsini.js @@ -14,7 +14,6 @@ try { catch(e) { can_extend_file = false; } -print("Done..."); new function() { var defs = {}; -- GitLab