Skip to content

Commit

Permalink
[Ada] changed default project/package name, to solve circular depende…
Browse files Browse the repository at this point in the history
…ncies (#7550)

* Ada generator generates "=>" (correct syntax) instead of "->". Fixes #7450

* Updated the Ada petstore samples

* Committing "VERSION" file and the rest of the petstore samples

* Changed default project name and package name for Ada, not to have circular dependencies between gpr files.
  • Loading branch information
michelealbano authored and wing328 committed Feb 2, 2018
1 parent 0e52dcd commit ea27924
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
import java.util.*;

abstract public class AbstractAdaCodegen extends DefaultCodegen implements CodegenConfig {
protected String packageName = "swagger";
protected String projectName = "Swagger";
protected String packageName = "defaultPackage";
protected String projectName = "defaultProject";
protected List<Map<String, Object>> orderedModels;
protected Map<String, List<String>> modelDepends;
protected Map<String, String> nullableTypeMapping;
Expand Down

0 comments on commit ea27924

Please sign in to comment.