Skip to content

Commit 776336f

Browse files
committed
Fix whitespace issues
Signed-off-by: Tobias Guggenmos <[email protected]>
1 parent 3797981 commit 776336f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

langserver/codeLens.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ import (
2424

2525
// CodeLens is required by the protocol.Server interface.
2626
func (s *server) CodeLens(_ context.Context, params *protocol.CodeLensParams) ([]protocol.CodeLens, error) {
27-
2827
// Currently Code Lenses are only supported for VS Code
2928
if s.initializeParams.ClientInfo.Name != "vscode" {
3029
return nil, nil
@@ -49,7 +48,6 @@ func (s *server) CodeLens(_ context.Context, params *protocol.CodeLensParams) ([
4948
codeLenses := make([]protocol.CodeLens, 0, len(queries))
5049

5150
for _, query := range queries {
52-
5351
pos, err := doc.PosToProtocolPosition(query.Pos)
5452
if err != nil {
5553
return nil, nil

0 commit comments

Comments
 (0)