Consider the following:
class TestDateParse {
static main(args) {
Date.parse('dd/MM/y', "16/09/1980")
}
}
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 calling Date.parse(String) rather than Date.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.
Consider the following:
As you can see, Greclipse is highlighting the call as deprecated, but if you use F2 or F3 over
parseyou 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.