Skip to content

Commit 0f5ee7a

Browse files
0bliviousromani
authored andcommitted
minor: fix violations from JavadocMissingWhitespaceAfterLeadingAsteriskCheck
1 parent 8c9740d commit 0f5ee7a

File tree

3 files changed

+28
-28
lines changed

3 files changed

+28
-28
lines changed

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

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

4646
/**
47-
*<b>
48-
*Option, that allow partial implementation of serializable interface.
49-
*</b>
47+
* <b>
48+
* Option, that allow partial implementation of serializable interface.
49+
* </b>
5050
*/
5151
private boolean allowPartialImplementation;
5252

@@ -223,44 +223,44 @@ private static boolean isSerializable(DetailAST classDefNode) {
223223
}
224224

225225
/**
226-
*<b>
226+
* <b>
227227
* Nested class, that implements custom iterator for DetailAST method nodes.
228-
*</b>
228+
* </b>
229229
*/
230230
private final class SiblingIterator {
231231

232232
/**
233-
*<b>
234-
*Next.
235-
*</b>
233+
* <b>
234+
* Next.
235+
* </b>
236236
*/
237237
private DetailAST next;
238238

239239
/**
240-
*<b>
241-
*Children Iterator constructor.
242-
*</b>
243-
*@param parent - child parent.
240+
* <b>
241+
* Children Iterator constructor.
242+
* </b>
243+
* @param parent - child parent.
244244
*/
245245
/* package */ SiblingIterator(DetailAST parent) {
246246
next = parent.findFirstToken(TokenTypes.METHOD_DEF);
247247
}
248248

249249
/**
250-
*<b>
251-
*Return boolean value, if has next element.
252-
*</b>
253-
*@return boolean value
250+
* <b>
251+
* Return boolean value, if has next element.
252+
* </b>
253+
* @return boolean value
254254
*/
255255
public boolean hasNextSibling() {
256256
return next != null;
257257
}
258258

259259
/**
260-
*<b>
261-
*Return next DetailAST element.
262-
*</b>
263-
*@return next DetailAST.
260+
* <b>
261+
* Return next DetailAST element.
262+
* </b>
263+
* @return next DetailAST.
264264
*/
265265

266266
public DetailAST nextSibling() {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,15 +114,15 @@
114114
* }
115115
* } </pre>
116116
*
117-
*<p><br>
117+
* <p><br>
118118
* <i>Some specific method call types that aren`t supported by check:</i>
119119
* </p>
120120
* <ul>
121121
* <li>BaseClass.InnerClass.this.methodName();</li>
122122
* <li>InnerClass.this.methodName();</li>
123123
* <li>and so on, using a similar hierarchy</li>
124124
* </ul>
125-
*<br>
125+
* <br>
126126
*
127127
* @author <a href="mailto:[email protected]"> Daniil
128128
* Yaroslavtsev</a>

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,17 @@
5454
*/
5555
public class UnnecessaryParenthesesExtendedCheck extends AbstractCheck {
5656

57-
/**Warning message key.*/
57+
/** Warning message key.*/
5858
public static final String MSG_KEY_ASSIGN = "unnecessary.paren.assign";
59-
/**Warning message key.*/
59+
/** Warning message key.*/
6060
public static final String MSG_KEY_EXPR = "unnecessary.paren.expr";
61-
/**Warning message key.*/
61+
/** Warning message key.*/
6262
public static final String MSG_KEY_IDENT = "unnecessary.paren.ident";
63-
/**Warning message key.*/
63+
/** Warning message key.*/
6464
public static final String MSG_KEY_LITERAL = "unnecessary.paren.literal";
65-
/**Warning message key.*/
65+
/** Warning message key.*/
6666
public static final String MSG_KEY_RETURN = "unnecessary.paren.return";
67-
/**Warning message key.*/
67+
/** Warning message key.*/
6868
public static final String MSG_KEY_STRING = "unnecessary.paren.string";
6969
/** The minimum number of child nodes to consider for a match. */
7070
private static final int MIN_CHILDREN_FOR_MATCH = 3;

0 commit comments

Comments
 (0)