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:
parent
6bedcd1097
commit
dbb4d4be53
|
@ -11,11 +11,11 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"log"
|
"log"
|
||||||
|
"net"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
"net"
|
|
||||||
|
|
||||||
"golang.org/x/tools/internal/jsonrpc2"
|
"golang.org/x/tools/internal/jsonrpc2"
|
||||||
"golang.org/x/tools/internal/lsp"
|
"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)
|
return lsp.RunServer(ctx, stream, logger)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func (s *Serve) forward() error {
|
func (s *Serve) forward() error {
|
||||||
conn, err := net.Dial("tcp", s.app.Remote)
|
conn, err := net.Dial("tcp", s.app.Remote)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue