-
Notifications
You must be signed in to change notification settings - Fork 14
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 blank Javadoc #75
Conversation
Can one of the admins verify this patch? |
First, thanks for removing these javadoc warnings. To merge these changes and build/release, however, I have to manually update each bundle version in both the manifest.mf and the pom.xml for each effected project (i.e. every project that has a changed source file in it). For most changes I do this myself. but right now I'm not able to spend the time on it...to only remove javadocs warnings. So, if you are able to add in the necessary version updates of the effected projects to the pull request (both bundle and feature project versions) then I will merge this pull request. If you are not able at the moment, then it will probably have to wait for a month or so. |
I could do the version updates if the build would raise an error about missing updates. It does not even run tests and missing version updates are only logged as warning. Currently the build complains about many more version updates missing then i touched in this commit:
|
Ok. Then this will wait. |
This commit cleans up Javadoc that does not add information. It resolves ecj warnings: `Javadoc: Description expected after ...` It helps to prevent future empty javadoc by disabling missingJavaDoc warnings. This resolves `Javadoc: Missing ...` The modification is a result of regular expression search&replace: in files `*.java` `^[\s]*\*[\s]*(@return|@param[\s]*[^\s]+|@throws[\s]*[^\s]+)\R([\s]*\*[\s]*@|[\s]*\*/\R)` ->`$2` `^([\s]*\*[\s]*\R)([\s]*\*/\R)` ->`$2` `^[\S\t ]*/\*\*\R[\s]*\*/\R` ->`` /\*\*\R \*/\R in files `org.eclipse.jdt.core.prefs` `org\.eclipse\.jdt\.core\.compiler\.problem\.missingJavadoc(Comments|Tags)\=[^\s]*` ->`org\.eclipse\.jdt\.core\.compiler\.problem\.missingJavadoc$1\=ignore`
@scottslewis i added version bump to my best knowledge, but the build fails with
I don't understand the message. any idea how to solve this? |
Closing as it seems to be no interest in this change. |
Removes ecj warning
"Javadoc: Description expected after this reference"