From 2ff980dedebd51e0a8f966f25012cf03563ec8b4 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Fri, 27 Apr 2018 00:05:09 -0700 Subject: [PATCH] GUACAMOLE-526: Remove debug console.log() from toArrayFilter(). --- guacamole/src/main/webapp/app/index/filters/arrayFilter.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/guacamole/src/main/webapp/app/index/filters/arrayFilter.js b/guacamole/src/main/webapp/app/index/filters/arrayFilter.js index f0429c859..d3a5df25e 100644 --- a/guacamole/src/main/webapp/app/index/filters/arrayFilter.js +++ b/guacamole/src/main/webapp/app/index/filters/arrayFilter.js @@ -25,9 +25,6 @@ angular.module('index').filter('toArray', [function toArrayFactory() { return function toArrayFiter(input) { - - console.log(input) - // If no object is available, just return an empty array if (!input) { return [];