Skip to content

Commit fccc5b8

Browse files
authored
Merge pull request #1072 from julia-vscode/fe/any-underscore
Replace unused untyped argument with `_` instead of `::Any`.
2 parents 86941c2 + 7bac843 commit fccc5b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/requests/actions.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ function remove_farg_name(x, server, conn)
315315
])
316316
else
317317
tde = TextDocumentEdit(VersionedTextDocumentIdentifier(file._uri, file._version), TextEdit[
318-
TextEdit(Range(file, offset .+ (0:x1.fullspan)), "::Any")
318+
TextEdit(Range(file, offset .+ (0:x1.fullspan)), "_")
319319
])
320320
end
321321
JSONRPC.send(conn, workspace_applyEdit_request_type, ApplyWorkspaceEditParams(missing, WorkspaceEdit(missing, TextDocumentEdit[tde])))

0 commit comments

Comments
 (0)