Skip to content

Commit

Permalink
Fix tab indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
isaul32 committed Sep 8, 2020
1 parent 2c391a9 commit f30877b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ relationships.forEach((relationship, index) => {
}); _%>
<%_ if (relationships.length !== 0 && renMapAnotEnt === true) { _%>
@Mappings(
<%- entityToDTOMapping.join(',\n\t\t') %>
<%- entityToDTOMapping.join(',\n\s\s\s\s\s\s\s\s') %>
)
<%_ } _%>
<%_ if (renMapAnotEnt === true) { _%>
Expand Down Expand Up @@ -120,7 +120,7 @@ relationships.forEach((relationship, index) => {
}); _ %>
<%_ if (relationships.length !== 0 && renMapAnotEnt === true) { _%>
@Mappings(
<%- dtoToEntityMapping.join(',\n\t\t') %>
<%- dtoToEntityMapping.join(',\n\s\s\s\s\s\s\s\s') %>
)
<%_ } _%>
override fun toEntity(<%= asDto(entityInstance) %>: <%= asDto(entityClass) %>): <%= asEntity(entityClass) %>
Expand Down

0 comments on commit f30877b

Please sign in to comment.