From 69f75a3b0640e0fb1a767eaf0ce11eded956a88c Mon Sep 17 00:00:00 2001 From: Rebecca Stambler Date: Mon, 25 Feb 2019 17:02:13 -0500 Subject: [PATCH] cmd/golsp: remove golsp binary, since we've moved to gopls We left the golsp binary for a few weeks after migrating to gopls. Remove it now. Change-Id: Iad44a3c9cf1427be6e2d81cc7a8e9fc60ef6ee50 Reviewed-on: https://go-review.googlesource.com/c/163779 Run-TryBot: Rebecca Stambler TryBot-Result: Gobot Gobot Reviewed-by: Ian Cottrell --- cmd/golsp/main.go | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 cmd/golsp/main.go diff --git a/cmd/golsp/main.go b/cmd/golsp/main.go deleted file mode 100644 index c873dafb18..0000000000 --- a/cmd/golsp/main.go +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright 2018 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// ----------------------------------------------------------------- -// WARNING: golsp has been renamed to gopls (see cmd/gopls/main.go). -// This file will be deleted soon. -// ----------------------------------------------------------------- - -// The golsp command is an LSP server for Go. -// The Language Server Protocol allows any text editor -// to be extended with IDE-like features; -// see https://langserver.org/ for details. -package main // import "golang.org/x/tools/cmd/golsp" - -import ( - "context" - "os" - - "golang.org/x/tools/internal/lsp/cmd" - "golang.org/x/tools/internal/tool" -) - -func main() { - tool.Main(context.Background(), &cmd.Application{}, os.Args[1:]) -}