Skip to content

Commit 3aa6db2

Browse files
Zopsssnrmancuso
authored andcommitted
minor: corrected leading asterisks alignment in javadoc
1 parent b859cee commit 3aa6db2

File tree

2 files changed

+52
-52
lines changed

2 files changed

+52
-52
lines changed

sevntu-checks/src/main/java/com/github/sevntu/checkstyle/checks/coding/AvoidDefaultSerializableInInnerClassesCheck.java

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ public class AvoidDefaultSerializableInInnerClassesCheck extends AbstractCheck {
4545
public static final String MSG_KEY = "avoid.default.serializable.in.inner.classes";
4646

4747
/**
48-
* <b>
49-
* Option, that allow partial implementation of serializable interface.
50-
* </b>
51-
*/
48+
* <b>
49+
* Option, that allow partial implementation of serializable interface.
50+
* </b>
51+
*/
5252
private boolean allowPartialImplementation;
5353

5454
/**
@@ -237,41 +237,41 @@ private static boolean isSerializable(DetailAST classDefNode) {
237237
private final class SiblingIterator {
238238

239239
/**
240-
* <b>
241-
* Next.
242-
* </b>
243-
*/
240+
* <b>
241+
* Next.
242+
* </b>
243+
*/
244244
private DetailAST next;
245245

246246
/**
247-
* <b>
248-
* Children Iterator constructor.
249-
* </b>
250-
*
251-
* @param parent - child parent.
252-
*/
247+
* <b>
248+
* Children Iterator constructor.
249+
* </b>
250+
*
251+
* @param parent - child parent.
252+
*/
253253
/* package */ SiblingIterator(DetailAST parent) {
254254
next = parent.findFirstToken(TokenTypes.METHOD_DEF);
255255
}
256256

257257
/**
258-
* <b>
259-
* Return boolean value, if has next element.
260-
* </b>
261-
*
262-
* @return boolean value
263-
*/
258+
* <b>
259+
* Return boolean value, if has next element.
260+
* </b>
261+
*
262+
* @return boolean value
263+
*/
264264
public boolean hasNextSibling() {
265265
return next != null;
266266
}
267267

268268
/**
269-
* <b>
270-
* Return next DetailAST element.
271-
* </b>
272-
*
273-
* @return next DetailAST.
274-
*/
269+
* <b>
270+
* Return next DetailAST element.
271+
* </b>
272+
*
273+
* @return next DetailAST.
274+
*/
275275

276276
public DetailAST nextSibling() {
277277
final DetailAST result = next;

sevntu-checks/src/main/java/com/github/sevntu/checkstyle/checks/naming/InterfaceTypeParameterNameCheck.java

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -24,32 +24,32 @@
2424
import com.puppycrawl.tools.checkstyle.checks.naming.AbstractNameCheck;
2525

2626
/**
27-
* <p>
28-
* Checks that interface type parameter names conform to a format specified
29-
* by the format property. The format is a
30-
* {@link java.util.regex.Pattern regular expression} and defaults to
31-
* <strong>^[A-Z]$</strong>.
32-
* </p>
33-
* <p>
34-
* An example of how to configure the check is:
35-
* </p>
36-
* <pre>
37-
* &lt;module name="InterfaceTypeParameterName"/&gt;
38-
* </pre>
39-
* <p>
40-
* An example of how to configure the check for names that are only a single
41-
* letter is
42-
* </p>
43-
* <pre>
44-
* &lt;module name="InterfaceTypeParameterName"&gt;
45-
* &lt;property name="format" value="^[a-zA-Z]$"/&gt;
46-
* &lt;/module&gt;
47-
* </pre>
48-
*
49-
* @author Dmitry Gridyushko
50-
* @version 1.0
51-
* @since 1.8.0
52-
*/
27+
* <p>
28+
* Checks that interface type parameter names conform to a format specified
29+
* by the format property. The format is a
30+
* {@link java.util.regex.Pattern regular expression} and defaults to
31+
* <strong>^[A-Z]$</strong>.
32+
* </p>
33+
* <p>
34+
* An example of how to configure the check is:
35+
* </p>
36+
* <pre>
37+
* &lt;module name="InterfaceTypeParameterName"/&gt;
38+
* </pre>
39+
* <p>
40+
* An example of how to configure the check for names that are only a single
41+
* letter is
42+
* </p>
43+
* <pre>
44+
* &lt;module name="InterfaceTypeParameterName"&gt;
45+
* &lt;property name="format" value="^[a-zA-Z]$"/&gt;
46+
* &lt;/module&gt;
47+
* </pre>
48+
*
49+
* @author Dmitry Gridyushko
50+
* @version 1.0
51+
* @since 1.8.0
52+
*/
5353
public class InterfaceTypeParameterNameCheck
5454
extends AbstractNameCheck {
5555

0 commit comments

Comments
 (0)