Commit 34f47682 34f47682fcecb1bd17319a03cc2890b3ec062ce8 by Nicolas Perriault

removed unused variable assignment

1 parent 527b776a
...@@ -238,7 +238,6 @@ phantom.onError = function phantom_onError(msg, backtrace) { ...@@ -238,7 +238,6 @@ phantom.onError = function phantom_onError(msg, backtrace) {
238 if (match && match.length === 4) { 238 if (match && match.length === 4) {
239 notices.push(' in module ' + match[2]); 239 notices.push(' in module ' + match[2]);
240 notices.push(' NOTICE: errors within modules cannot be backtraced yet.'); 240 notices.push(' NOTICE: errors within modules cannot be backtraced yet.');
241 cls = match[1];
242 msg = match[3]; 241 msg = match[3];
243 } 242 }
244 console.error(c.colorize(msg, 'RED_BAR', 80)); 243 console.error(c.colorize(msg, 'RED_BAR', 80));
......