lsp/internal: fix incorrectly formatted file

Change-Id: Ibef9c7d5ce0abfa26ba98744c26b54d843227c23
Reviewed-on: https://go-review.googlesource.com/c/162077
Run-TryBot: Ian Cottrell <iancottrell@google.com>
Reviewed-by: Rebecca Stambler <rstambler@golang.org>
This commit is contained in:
Ian Cottrell 2019-02-12 13:16:08 -05:00
parent 6bedcd1097
commit dbb4d4be53
1 changed files with 2 additions and 3 deletions

View File

@ -11,11 +11,11 @@ import (
"fmt"
"io"
"log"
"net"
"os"
"path/filepath"
"strings"
"time"
"net"
"golang.org/x/tools/internal/jsonrpc2"
"golang.org/x/tools/internal/lsp"
@ -129,7 +129,6 @@ func (s *Serve) Run(ctx context.Context, args ...string) error {
return lsp.RunServer(ctx, stream, logger)
}
func (s *Serve) forward() error {
conn, err := net.Dial("tcp", s.app.Remote)
if err != nil {