From 21517d3fc6abff3ced7cad2a68cfb290df60922f Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Wed, 23 Apr 2014 17:44:41 +0100 Subject: [PATCH] Remove pp2limit regression-testing scaffold. --- src/mkws-filter.js | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/src/mkws-filter.js b/src/mkws-filter.js index 03e07e1..f19edcb 100644 --- a/src/mkws-filter.js +++ b/src/mkws-filter.js @@ -72,29 +72,6 @@ function filterSet(team) { }; that.pp2limit = function(initial) { - var OLD = that.OLD_pp2limit(initial); - var NEW = that.NEW_pp2limit(initial); - if (OLD !== NEW) { - alert("pp2limit(): OLD[" + OLD + "] !== NEW[" + NEW + "]"); - } - return OLD; - }; - - that.OLD_pp2limit = function(initial) { - var res = initial || ""; - - for (var i in m_list) { - var filter = m_list[i]; - if (!filter.id) { - if (res) res += ","; - res += filter.field + "=" + filter.value.replace(/[\\|,]/g, '\\$&'); - } - } - - return res; - }; - - that.NEW_pp2limit = function(initial) { var res = initial || ""; that.visitFields(function(field, value) { -- 1.7.10.4