2
0
Fork 0
mirror of https://github.com/ethauvin/bld.git synced 2025-04-25 16:27:11 -07:00

Don't add Lib suffix for lib project creation

This commit is contained in:
Geert Bevin 2024-12-26 18:42:01 -05:00
parent a7efd01697
commit b27cc78fb7
2 changed files with 3 additions and 7 deletions

View file

@ -24,10 +24,6 @@ public class CreateLibOperation extends AbstractCreateOperation<CreateLibOperati
return new LibProjectBlueprint(new File(workDirectory(), projectName()), packageName(), projectName(), baseName());
}
protected String projectMainClassName(String projectClassName) {
return projectClassName + "Lib";
}
protected boolean createIdeaRunMain() {
return false;
}