Skip to content

Commit

Permalink
Checkstyle: @author tags are deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 23, 2023
1 parent a3c8e94 commit 1df5606
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/conf/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,12 @@ limitations under the License.
<property name="ordered" value="true"/>
<property name="separated" value="true"/>
</module>
</module>
</module>
<!-- @author tags are deprecated -->
<module name="RegexpSingleline">
<property name="format" value="^\s+\*\s+@author\s" />
<property name="message" value="Deprecated @author tag" />
<property name="fileExtensions" value="java" />
<property name="severity" value="warning" />
</module>
</module>

0 comments on commit 1df5606

Please sign in to comment.