Skip to content

Commit

Permalink
style: revert code style
Browse files Browse the repository at this point in the history
  • Loading branch information
jbl428 committed Nov 12, 2023
1 parent 84fc35c commit 6362262
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ open class KotlinJdslAutoConfiguration {
}
}

return JpqlRenderContext().registerModules(userDefinedModule)
return JpqlRenderContext()
.registerModules(userDefinedModule)
}

@Bean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ open class KotlinJdslAutoConfiguration {
}
}

return JpqlRenderContext().registerModules(userDefinedModule)
return JpqlRenderContext()
.registerModules(userDefinedModule)
}

@Bean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ open class KotlinJdslAutoConfiguration {
}
}

return JpqlRenderContext().registerModules(userDefinedModule)
return JpqlRenderContext()
.registerModules(userDefinedModule)
}

@Bean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ open class KotlinJdslAutoConfiguration {
}
}

return JpqlRenderContext().registerModules(userDefinedModule)
return JpqlRenderContext()
.registerModules(userDefinedModule)
}

@Bean
Expand Down

0 comments on commit 6362262

Please sign in to comment.