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
remove DefaultCodegen changes
  • Loading branch information
smasala committed Oct 4, 2018
commit d2a2aa76bfdac207c7cca384e14c544f20d38b8b
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ public String toApiVarName(String name) {
* @return the file name of the model
*/
public String toModelFilename(String name) {
return this.sanitizeName(initialCaps(name));
return initialCaps(name);
}

/**
Expand All @@ -741,7 +741,7 @@ public String toModelFilename(String name) {
* @return the file name of the model
*/
public String toModelTestFilename(String name) {
return this.sanitizeName(initialCaps(name) + "Test");
return initialCaps(name) + "Test";
}

/**
Expand Down