Remove some accidentally leaked `q.Q()` calls from earlier debugging.x

This commit is contained in:
Sean Chittenden 2017-02-14 22:11:19 -08:00
parent 59925478c3
commit 4003c47c71
No known key found for this signature in database
GPG Key ID: 4EBC9DC16C2E5E16
1 changed files with 0 additions and 4 deletions

View File

@ -6,7 +6,6 @@ import (
consulapi "github.com/hashicorp/consul/api" consulapi "github.com/hashicorp/consul/api"
"github.com/hashicorp/errwrap" "github.com/hashicorp/errwrap"
"github.com/hashicorp/terraform/helper/schema" "github.com/hashicorp/terraform/helper/schema"
"github.com/y0ssar1an/q"
) )
const ( const (
@ -160,10 +159,7 @@ func dataSourceConsulCatalogServiceRead(d *schema.ResourceData, meta interface{}
l := make([]interface{}, 0, len(services)) l := make([]interface{}, 0, len(services))
q.Q(services)
for _, service := range services { for _, service := range services {
q.Q(service)
const defaultServiceAttrs = 13 const defaultServiceAttrs = 13
m := make(map[string]interface{}, defaultServiceAttrs) m := make(map[string]interface{}, defaultServiceAttrs)