You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
t BlockTag (id=172)
name "param" (id=199)
value " param1 first paramater" (id=200)
paramName "" (id=173)
paramComment "param1 first paramater" (id=184)
paramName is empty string
After patch the method and trimming t.value here whitespace.split(t.value.trim(), 2);, seems to solve the problem
t BlockTag (id=171)
name "param" (id=199)
value " param1 first paramater" (id=200)
paramName "param1" (id=182)
paramComment "first paramater" (id=173)
"Is it possible to add this solution to the project or something similar?
I have encountered an issue with the Javadoc of the methods and their parameters after formatting them in Eclipse and adjusting their indentations.
Let me explain with code examples
Before format
After formatting the code, the javadoc is aligned for easier readability (look at the two spaces between
@param
and the params names)The problem is that the comments for the parameters are lost due to such indentation
In the class
com.github.therapi.runtimejavadoc.internal.parser.JavadocParser
we have this methodWhen this method is called, we got this
paramName is empty string
After patch the method and trimming t.value here
whitespace.split(t.value.trim(), 2);
, seems to solve the problem"Is it possible to add this solution to the project or something similar?
Method with the "patch"
Thank you very much for your time
The text was updated successfully, but these errors were encountered: