Skip to content

Commit b5d2509

Browse files
Rohanraj123rnveach
authored andcommitted
Issue #13934: Version Update from 3.2 to 3.4
1 parent 9c3ad23 commit b5d2509

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

src/main/java/com/puppycrawl/tools/checkstyle/site/SiteUtil.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,10 @@ public final class SiteUtil {
164164
private static final Map<String, String> SINCE_VERSION_FOR_INHERITED_PROPERTY = Map.ofEntries(
165165
Map.entry("MissingDeprecatedCheck.violateExecutionOnNonTightHtml", "8.24"),
166166
Map.entry("NonEmptyAtclauseDescriptionCheck.violateExecutionOnNonTightHtml", "8.3"),
167-
Map.entry("NonEmptyAtclauseDescriptionCheck.javadocTokens", "7.3")
167+
Map.entry("NonEmptyAtclauseDescriptionCheck.javadocTokens", "7.3"),
168+
Map.entry("FileTabCharacterCheck.fileExtensions", "5.0"),
169+
Map.entry("ParenPadCheck.option", "3.0"),
170+
Map.entry("TypecastParenPadCheck.option", "3.2")
168171
);
169172

170173
/** Map of all superclasses properties and their javadocs. */
@@ -699,9 +702,8 @@ public static String getSinceVersion(String moduleName, DetailNode moduleJavadoc
699702
if (superClassSinceVersion != null) {
700703
sinceVersion = superClassSinceVersion;
701704
}
702-
else if (SUPER_CLASS_PROPERTIES_JAVADOCS.containsKey(propertyName)
703-
|| TOKENS.equals(propertyName)
704-
|| JAVADOC_TOKENS.equals(propertyName)) {
705+
else if (TOKENS.equals(propertyName)
706+
|| JAVADOC_TOKENS.equals(propertyName)) {
705707
// Use module's since version for inherited properties
706708
sinceVersion = getSinceVersionFromJavadoc(moduleJavadoc);
707709
}

src/xdocs/checks/coding/returncount.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<td>Specify method names to ignore.</td>
4949
<td><a href="../../property_types.html#Pattern">Pattern</a></td>
5050
<td><code>&quot;^equals$&quot;</code></td>
51-
<td>3.2</td>
51+
<td>3.4</td>
5252
</tr>
5353
<tr>
5454
<td>max</td>

0 commit comments

Comments
 (0)