improve line indentation

This commit is contained in:
Yonas Kolb 2016-04-19 10:04:11 +10:00
parent 3de7a4ba85
commit 491ceb8987

View File

@ -335,10 +335,9 @@ public class SwiftCodegen extends DefaultCodegen implements CodegenConfig {
// Ensure that the enum type doesn't match a reserved word or // Ensure that the enum type doesn't match a reserved word or
// the variable name doesn't match the generated enum type or the // the variable name doesn't match the generated enum type or the
// Swift compiler will generate an error // Swift compiler will generate an error
if (isReservedWord(codegenProperty.datatypeWithEnum) || if (isReservedWord(codegenProperty.datatypeWithEnum) || name.equals(codegenProperty.datatypeWithEnum)) {
name.equals(codegenProperty.datatypeWithEnum)) {
codegenProperty.datatypeWithEnum = codegenProperty.datatypeWithEnum + "Enum"; codegenProperty.datatypeWithEnum = codegenProperty.datatypeWithEnum + "Enum";
} }
} }
return codegenProperty; return codegenProperty;
} }