Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Changes to the c client:
- Removed white space.
- Removed ToJSON and FromJSON function for the enums, since they are not used
- Sanitized project name in the .java file. For example, this solves a problem with the issue #2338, where the yaml file had title: "Skycoin REST API."
  • Loading branch information
michelealbano committed Mar 12, 2020
commit bfdd7cff4949c00252b50b97841b81d7873a2c7b
Original file line number Diff line number Diff line change
Expand Up @@ -623,11 +623,7 @@ public void preprocessOpenAPI(OpenAPI openAPI) {
}

public void setProjectName(String projectName) {
System.out.println("michele was here setProjectName this1 "+this.projectName);
System.out.println("michele was here setProjectName no1 "+projectName);
this.projectName = underscore(sanitizeName(projectName.toLowerCase(Locale.ROOT)));
System.out.println("michele was here setProjectName this2 "+this.projectName);
System.out.println("michele was here setProjectName no2 "+projectName);
}

@Override
Expand Down