Skip to content

Commit 40a1bba

Browse files
MANISH-K-07rnveach
authored andcommitted
supplemental: removed conditional that checks suppression list
1 parent 101e623 commit 40a1bba

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/test/java/com/puppycrawl/tools/checkstyle/internal/XpathRegressionTest.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,6 @@ public class XpathRegressionTest extends AbstractModuleTestSupport {
116116

117117
private static final Set<String> INTERNAL_MODULES = getInternalModules();
118118

119-
// Checks whose files need to be renamed to new pattern "InputXpath{Check}Xxx.java"
120-
// until https://github.com/checkstyle/checkstyle/issues/14715
121-
private static final Set<String> RENAME_INPUT_XPATH = Set.of();
122-
123119
private Path javaDir;
124120
private Path inputDir;
125121

@@ -272,7 +268,7 @@ private static void validateInputDirectory(Path checkDir) throws IOException {
272268
try (DirectoryStream<Path> inputPaths = Files.newDirectoryStream(checkDir)) {
273269
for (Path inputPath : inputPaths) {
274270
final String filename = inputPath.toFile().getName();
275-
if (filename.endsWith("java") && !RENAME_INPUT_XPATH.contains(check)) {
271+
if (filename.endsWith("java")) {
276272
final Matcher matcher = pattern.matcher(filename);
277273
assertWithMessage(
278274
"Invalid input file '" + inputPath

0 commit comments

Comments
 (0)