We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
AbstractMethodOrInterfaceMethodMustUseJavadocRule 使用的消息模版 java.comment.AbstractMethodOrInterfaceMethodMustUseJavadocRule.violation.msg.parameter,中文模版 <entry key="java.comment.AbstractMethodOrInterfaceMethodMustUseJavadocRule.violation.msg.parameter"> <![CDATA[方法【%s】的参数【%s】缺少javadoc注释]]> </entry> 能够对先后传入的方法名、参数名渲染出正确的报错消息。但是,英文模版 <entry key="java.comment.AbstractMethodOrInterfaceMethodMustUseJavadocRule.violation.msg.parameter"> <![CDATA[parameter [%s] of method [%s] should have javadoc]]> </entry> 渲染出的报错消息里,方法名、参数名就写反了。参考下面的截图: 同样的问题,也存在于java.comment.AbstractMethodOrInterfaceMethodMustUseJavadocRule.violation.msg.exception消息模版中。
<entry key="java.comment.AbstractMethodOrInterfaceMethodMustUseJavadocRule.violation.msg.parameter"> <![CDATA[方法【%s】的参数【%s】缺少javadoc注释]]> </entry>
<entry key="java.comment.AbstractMethodOrInterfaceMethodMustUseJavadocRule.violation.msg.parameter"> <![CDATA[parameter [%s] of method [%s] should have javadoc]]> </entry>
The text was updated successfully, but these errors were encountered:
修复在en模式下,AbstractMethodOrInterfaceMethodMustUseJavadocRule的2处报错消息中,me…
c1ae151
…thod名称与param名称颠倒的问题、以及method名称与exception名称颠倒的问题。Fixes alibaba#440
fix后的样子:
Sorry, something went wrong.
c7bc1a8
No branches or pull requests
AbstractMethodOrInterfaceMethodMustUseJavadocRule 使用的消息模版 java.comment.AbstractMethodOrInterfaceMethodMustUseJavadocRule.violation.msg.parameter,中文模版
<entry key="java.comment.AbstractMethodOrInterfaceMethodMustUseJavadocRule.violation.msg.parameter"> <![CDATA[方法【%s】的参数【%s】缺少javadoc注释]]> </entry>
能够对先后传入的方法名、参数名渲染出正确的报错消息。但是,英文模版
<entry key="java.comment.AbstractMethodOrInterfaceMethodMustUseJavadocRule.violation.msg.parameter"> <![CDATA[parameter [%s] of method [%s] should have javadoc]]> </entry>
渲染出的报错消息里,方法名、参数名就写反了。参考下面的截图:
同样的问题,也存在于java.comment.AbstractMethodOrInterfaceMethodMustUseJavadocRule.violation.msg.exception消息模版中。
The text was updated successfully, but these errors were encountered: