Skip to content

Commit

Permalink
Issue checkstyle#15197: Refactor SummaryJavadocCheck into SummaryJava…
Browse files Browse the repository at this point in the history
…doc for configs
  • Loading branch information
piyush kumar sadangi authored and romani committed Jul 7, 2024
1 parent d341662 commit 122f247
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*xml
<module name="Checker">
<module name="TreeWalker">
<module name="SummaryJavadocCheck"/>
<module name="SummaryJavadoc"/>
</module>
</module>
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*xml
<module name="Checker">
<module name="TreeWalker">
<module name="SummaryJavadocCheck"/>
<module name="SummaryJavadoc"/>
</module>
</module>
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*xml
<module name="Checker">
<module name="TreeWalker">
<module name="SummaryJavadocCheck">
<module name="SummaryJavadoc">
<property name="forbiddenSummaryFragments"
value="^This method returns.*"/>
</module>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*xml
<module name="Checker">
<module name="TreeWalker">
<module name="SummaryJavadocCheck">
<module name="SummaryJavadoc">
<property name="period" value="。"/>
</module>
</module>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*xml
<module name="Checker">
<module name="TreeWalker">
<module name="SummaryJavadocCheck">
<module name="SummaryJavadoc">
<property name="period" value="。"/>
</module>
</module>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*xml
<module name="Checker">
<module name="TreeWalker">
<module name="SummaryJavadocCheck">
<module name="SummaryJavadoc">
<property name="period" value="。"/>
</module>
</module>
Expand Down
6 changes: 3 additions & 3 deletions src/xdocs/checks/javadoc/summaryjavadoc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<source>
&lt;module name=&quot;Checker&quot;&gt;
&lt;module name=&quot;TreeWalker&quot;&gt;
&lt;module name=&quot;SummaryJavadocCheck&quot;/&gt;
&lt;module name=&quot;SummaryJavadoc&quot;/&gt;
&lt;/module&gt;
&lt;/module&gt;
</source>
Expand Down Expand Up @@ -121,7 +121,7 @@ public class Test extends Exception {
<source>
&lt;module name=&quot;Checker&quot;&gt;
&lt;module name=&quot;TreeWalker&quot;&gt;
&lt;module name=&quot;SummaryJavadocCheck&quot;&gt;
&lt;module name=&quot;SummaryJavadoc&quot;&gt;
&lt;property name=&quot;forbiddenSummaryFragments&quot;
value=&quot;^This method returns.*&quot;/&gt;
&lt;/module&gt;
Expand All @@ -134,7 +134,7 @@ public class Test extends Exception {
<source>
&lt;module name=&quot;Checker&quot;&gt;
&lt;module name=&quot;TreeWalker&quot;&gt;
&lt;module name=&quot;SummaryJavadocCheck&quot;&gt;
&lt;module name=&quot;SummaryJavadoc&quot;&gt;
&lt;property name=&quot;period&quot; value=&quot;&#x3002;&quot;/&gt;
&lt;/module&gt;
&lt;/module&gt;
Expand Down

0 comments on commit 122f247

Please sign in to comment.