-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
HBASE-22481: Javadoc Warnings reference not found #254
Conversation
💔 -1 overall
This message was automatically generated. |
…checkstyle-suppress.xml file
💔 -1 overall
This message was automatically generated. |
@@ -45,4 +45,5 @@ | |||
<suppress checks="IllegalImport" message="org\.apache\.htrace\.core"/> | |||
<suppress checks="ImportOrder" message="Extra separation in import group before"/> | |||
<suppress checks="MethodLength" files="DemoClient.java"/> | |||
<suppress checks="LineLength" files="MultiTableSnapshotInputFormat.java"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please check if it is possible to add the package name to the file suppression?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have checked and it is possible. Please find the latest commit.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to suppress LineLenght check only on the offending lines in the javadoc instead of completely ignoring it in the org.apache.hadoop.hbase.mapred package?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks i will look into it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have suppressed LineLength check only on the offending lines in the javadoc using "@SuppressWarnings" annotation. Kindly check the 4th commit for this change.
🎊 +1 overall
This message was automatically generated. |
…t check only on the offending lines in the javadoc
💔 -1 overall
This message was automatically generated. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Neat solution! Thanks @SyedMurtazaHassan!
Fixed the warnings javadoc warnings for MultiTableSnapshotInputFormat.java file.