julia-vscode / SymbolServer.jl

Other
23 stars 31 forks source link

Incorrect deprecation warnings #173

Closed aminya closed 4 years ago

aminya commented 4 years ago

When I run the following code, I get a lot of deprecation warnings which seem to be incorrect:

using SymbolServer
env = SymbolServer.getenvtree()
WARNING: Compat.Random is deprecated, use Random instead.

WARNING: Compat.LibGit2 is deprecated, use LibGit2 instead.

...
pfitzseb commented 4 years ago

Those bindings are deprecated, and the deprecation warning is thrown when they are resolved. I don't think there's a way around this.

aminya commented 4 years ago

Hmm. I did not know that Compat exports that many symbols! It seemed strange to me.