Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
fix: incorrect package naming for classes containing "java" (#1802) (#…
Browse files Browse the repository at this point in the history
…1863)

fix: incorrect package naming for classes containing "java" (#1802)
  • Loading branch information
FaSheep authored Aug 26, 2024
1 parent a2e7598 commit 5b0a587
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
public class ProjectWriter {

private static final String XML_TEMPLATE_PATH = "templates/xml";
private static final String SOURCE_PATH_REGEX = "/.*/src/.*/java|kt";
private static final String SOURCE_PATH_REGEX = "/.*/src/.*?/(java|kotlin)";

@NonNull
public static String createMenu() {
Expand Down

0 comments on commit 5b0a587

Please sign in to comment.