From 6f4401654ca90be80b1c3541b1f67b3be4cb209d Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Wed, 28 Oct 2015 18:37:27 -0700 Subject: [PATCH] misc: comment cleanup --- service/api/conversions.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/service/api/conversions.go b/service/api/conversions.go index c079b0ce..18784f21 100644 --- a/service/api/conversions.go +++ b/service/api/conversions.go @@ -9,7 +9,6 @@ import ( "github.com/derekparker/delve/proc" ) -// convertBreakpoint converts an internal breakpoint to an API Breakpoint. func ConvertBreakpoint(bp *proc.Breakpoint) *Breakpoint { b := &Breakpoint{ ID: bp.ID, @@ -32,7 +31,6 @@ func ConvertBreakpoint(bp *proc.Breakpoint) *Breakpoint { return b } -// convertThread converts an internal thread to an API Thread. func ConvertThread(th *proc.Thread) *Thread { var ( function *Function @@ -58,7 +56,6 @@ func ConvertThread(th *proc.Thread) *Thread { } } -// convertVar converts an internal variable to an API Variable. func ConvertVar(v *proc.Variable) *Variable { r := Variable{ Addr: v.Addr, @@ -117,7 +114,6 @@ func ConvertFunction(fn *gosym.Func) *Function { } } -// convertGoroutine converts an internal Goroutine to an API Goroutine. func ConvertGoroutine(g *proc.G) *Goroutine { return &Goroutine{ ID: g.Id,