File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
src/test/java/com/puppycrawl/tools/checkstyle/internal Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments