Open ossdhaval opened 1 year ago
im kinda new to this but will the error list give me the full list of methods with inconsistent javadocs?
Hey @AFreeBaldy , thanks for checking this issue.
Yes. The Maven build log gives a complete list with errors pointing to the file name and line number. You might see other warnings too, but we want to focus on errors due to inconsistent javadocs.
Hey @AFreeBaldy , thanks for checking this issue.
Yes. The Maven build log gives a complete list with errors pointing to the file name and line number. You might see other warnings too, but we want to focus on errors due to inconsistent javadocs.
I will get on it then
Also, make sure to go through contribution guidelines to understand the process and overall standards.
@AFreeBaldy I am assigning this to you. Let us know if you need any help.
@AFreeBaldy I am assigning this to you. Let us know if you need any help.
I have a question, for cases where there are no params, what should I use as the description for the params tag. I am not 100% familiar with the code base, so If I don't use some general description, I will have to first familiarize myself with the code, then write an accurate description, which will take a while.
Hey @AFreeBaldy, Can you please share a link to the code where you are seeing such a problem ?
I will have to first familiarize myself with the code, then write an accurate description
Yes, writing an accurate description would be essential, because an inaccurate description may hurt us more than not having documentation. Learning the code would be an investment if you intend to get more involved in the project. And we would love to see that. :heart_decoration:
We always ask contributors to create small PRs. With a small number of changes in each. It is easier to review and less risky to merge. Hence it moves faster. What you can do is you can keep all the problem cases in a separate PR and submit that at the last. Start with what is easy and obvious for you. Create a PR for that and submit it for review. This way, you'll get familiarized with the process also.
Hope this helps.
Hey @AFreeBaldy, Can you please share a link to the code where you are seeing such a problem ?
I will have to first familiarize myself with the code, then write an accurate description
Yes, writing an accurate description would be essential, because an inaccurate description may hurt us more than not having documentation. Learning the code would be an investment if you intend to get more involved in the project. And we would love to see that. 💟
We always ask contributors to create small PRs. With a small number of changes in each. It is easier to review and less risky to merge. Hence it moves faster. What you can do is you can keep all the problem cases in a separate PR and submit that at the last. Start with what is easy and obvious for you. Create a PR for that and submit it for review. This way, you'll get familiarized with the process also.
Hope this helps.
ok thank you will do
Hey @AFreeBaldy
This issue has been sitting idle for a couple of weeks. If you need any support, do let us know. If you are not planning to work on this issue, it will be better to keep this issue unassigned so that it becomes open for others in the community to pick up.
Please add a comment here. In absence of a comment, I would be removing the assignment tomorrow.
Hey @AFreeBaldy
This issue has been sitting idle for a couple of weeks. If you need any support, do let us know. If you are not planning to work on this issue, it will be better to keep this issue unassigned so that it becomes open for others in the community to pick up.
Please add a comment here. In absence of a comment, I would be removing the assignment tomorrow.
I have a very important test for a program I am in coming up in a few weeks so I have been studying, but afterwards I plan on continuing, I was reading over the code base trying to familiarize myself with it. Sorry, but I can get started after my test
Note: This issue is marked as
good first issue
. You should take it up only if this is your initial contribution to the Janssen Project.Describe the bug There are number of instances in the codebase where javadoc comments are not consistent with the actual code. For instance, here.
When we generate javadoc using
mvn javadoc:javadoc
, the build log shows errors like below.Regular builds don't fail due to errors like the above as modules have configured the javadoc plug-in in their
pom.xml
as below. As a result, the build goes through and generates the wrong javadocs.To Reproduce Steps to reproduce the behavior:
<failOnError>false</failOnError>
configuration for javadoc plug-in across module pom filesmvn javadoc:javadoc
for each module one-by-oneExpected behavior javadoc comments should be updated to be consistent with the code