Skip to content

Commit

Permalink
Update missed ;
Browse files Browse the repository at this point in the history
  • Loading branch information
kapilguptavz committed Nov 3, 2023
1 parent 1b9fc23 commit 5cce867
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ void generateApis(List<File> files, List<OperationsMap> allOperations, List<Mode
// checking if apiController file is already existed for spring generator
private boolean apiFilePreCheck(String filename, String generator, String templateName, String apiControllerTemplate){
File apiFile = new File(filename);
return !(apiFile.exists() && config.getName().equals(generator) && templateName.equals(apiControllerTemplate))
return !(apiFile.exists() && config.getName().equals(generator) && templateName.equals(apiControllerTemplate));
}

private void generateSupportingFiles(List<File> files, Map<String, Object> bundle) {
Expand Down

0 comments on commit 5cce867

Please sign in to comment.