From 4003c47c71128e1b6a5ebe27954ddd304bf06936 Mon Sep 17 00:00:00 2001 From: Sean Chittenden Date: Tue, 14 Feb 2017 22:11:19 -0800 Subject: [PATCH] Remove some accidentally leaked `q.Q()` calls from earlier debugging.x --- .../providers/consul/data_source_consul_catalog_service.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/builtin/providers/consul/data_source_consul_catalog_service.go b/builtin/providers/consul/data_source_consul_catalog_service.go index 3a05fe20a..6408fca34 100644 --- a/builtin/providers/consul/data_source_consul_catalog_service.go +++ b/builtin/providers/consul/data_source_consul_catalog_service.go @@ -6,7 +6,6 @@ import ( consulapi "github.com/hashicorp/consul/api" "github.com/hashicorp/errwrap" "github.com/hashicorp/terraform/helper/schema" - "github.com/y0ssar1an/q" ) const ( @@ -160,10 +159,7 @@ func dataSourceConsulCatalogServiceRead(d *schema.ResourceData, meta interface{} l := make([]interface{}, 0, len(services)) - q.Q(services) for _, service := range services { - q.Q(service) - const defaultServiceAttrs = 13 m := make(map[string]interface{}, defaultServiceAttrs)