From b037339bcef1648d27793b079a63d2ffe8fc5675 Mon Sep 17 00:00:00 2001 From: Joseph Frazer Date: Thu, 29 Nov 2018 11:33:42 -0500 Subject: [PATCH] [DEV-3731] Change visibility of postProcessResults method The postProcessResults method occasionally failed to be overridden in local environments due to issues with how npm handled its dependencies. For some reason, changing this to a public method corrected the issue. I am changing this to, hopefully, prevent future frustrations. --- src/server/rater/DslRaterContext.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/rater/DslRaterContext.js b/src/server/rater/DslRaterContext.js index 69b9878..e8c7a9f 100644 --- a/src/server/rater/DslRaterContext.js +++ b/src/server/rater/DslRaterContext.js @@ -312,7 +312,7 @@ module.exports = Class( 'DslRaterContext' ) }, - 'virtual protected postProcessResults': function( results ) + 'virtual public postProcessResults': function( results ) { var ret = {};