Skip to content

Commit

Permalink
minor: use extractor's default project to be .yml
Browse files Browse the repository at this point in the history
  • Loading branch information
piyush kumar sadangi authored and romani committed Oct 8, 2024
1 parent 12518f3 commit ad60d02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public static void main(final String[] args) throws Exception {
*/
public static void outputDefaultProjectsList(final String outputPath) {
try (InputStream inputStream = CheckstyleExampleExtractor.class
.getResourceAsStream("/list-of-projects.properties");
.getResourceAsStream("/list-of-projects.yml");
OutputStream outputStream = Files.newOutputStream(Path.of(outputPath))) {

final byte[] buffer = new byte[BUFFER_SIZE];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class MainsLauncherTest {
/**
* The constant for default projects file.
*/
private static final String DEFAULT_PROJECTS_FILE = "list-of-projects.properties";
private static final String DEFAULT_PROJECTS_FILE = "list-of-projects.yml";

/**
* Tests the main method of CheckstyleExampleExtractor.
Expand Down

0 comments on commit ad60d02

Please sign in to comment.