-
Notifications
You must be signed in to change notification settings - Fork 193
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
Wrong call detected on Date.parse(String, String) #372
Labels
Comments
Groovy JDK adds more methods to |
Detection of static Groovy methods is not very complete. I'm not that surprised the DGSM is missed.
|
eric-milles
added a commit
that referenced
this issue
Nov 10, 2017
ready to test |
Hi Eric, I tested this with 2.9.2.xx-201711130408-e46 and it seems to be fixed, thank you! 👍 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Consider the following:
As you can see, Greclipse is highlighting the call as deprecated, but if you use F2 or F3 over
parse
you see that this is because it's thinking it's callingDate.parse(String)
rather thanDate.parse(String, String)
(which is not deprecated).This is a regression, because the exact same problem was fixed already in the past with GRECLIPSE-1396.
The text was updated successfully, but these errors were encountered: