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
invalidJavadocTags can be configured to only examine methods with certain access modifiers (invalidJavadocTagsVisibility). However this seems to only consider explicitly specified modifiers and not effective/default modifiers.
E.g. when invalidJavadocTagsVisibility is set to protected it should validate all methods in an interface since they are all implicitly public. However, a warning is only created when the method is explicitly marked as public:
publicinterfaceMyInterface
{
// creates a warning/** * @param doesNotExist */publicvoidtest1();
// does not create a warning/** * @param doesNotExist */voidtest2();
}
The text was updated successfully, but these errors were encountered:
invalidJavadocTags
can be configured to only examine methods with certain access modifiers (invalidJavadocTagsVisibility
). However this seems to only consider explicitly specified modifiers and not effective/default modifiers.E.g. when
invalidJavadocTagsVisibility
is set toprotected
it should validate all methods in an interface since they are all implicitlypublic
. However, a warning is only created when the method is explicitly marked aspublic
:The text was updated successfully, but these errors were encountered: