Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 remove static map, so that each symbol provider for a search is new #103

Merged
merged 2 commits into from
Jul 16, 2024

Conversation

shawn-hurley
Copy link
Contributor

No description provided.

@@ -162,7 +162,7 @@ public boolean visit(ClassInstanceCreation node) {
// get fqn of the method being called
ITypeBinding declaringClass = binding.getDeclaringClass();
if (declaringClass != null) {
String fullyQualifiedName = declaringClass.getQualifiedName() + "." + binding.getName();
String fullyQualifiedName = declaringClass.getQualifiedName();
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

During testing for this, I noticed that the Qualified Name from Class was the full name (java.io.File) and adding the binding made it (java.io.File.File) it still mateched the queries but this is more correct

@shawn-hurley shawn-hurley requested a review from jmle July 15, 2024 18:02
@dymurray dymurray changed the title 🐛 remove static map, so that each symbol provider for a seach is new 🐛 remove static map, so that each symbol provider for a search is new Jul 15, 2024
@shawn-hurley shawn-hurley force-pushed the bugfix/remove-static-map branch from 5763789 to b32443e Compare July 15, 2024 18:06
@shawn-hurley
Copy link
Contributor Author

When running local with this change, getting rules erroring in the hub but not locally.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants