Fix javadoc of Name class#4789
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #4789 +/- ##
===========================================
Coverage 58.326% 58.326%
Complexity 2514 2514
===========================================
Files 671 671
Lines 38782 38782
Branches 7041 7041
===========================================
Hits 22620 22620
Misses 13271 13271
Partials 2891 2891
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
|
It seems to me that this refers to an old method that no longer exists, but I don't think it's necessary to introduce a reference to the StaticJavaParser class. I'd opt for the Name class constructor instead. |
I was looking for a constructor that accepts one fully qualified name string and did not find one. So I was actually glad that the comment hinted at the existence of a helper method, even though I still had to find it. So my suggestion is to either add that link or to move |
I could not find the mentioned
name(...)method in this class. After a while, I foundStaticJavaParser.parseName()and I guess that is the one that should be linked here.