Skip to content

Commit

Permalink
style: code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ymind committed Jul 6, 2022
1 parent e6f8d83 commit 3a5d57d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[*]
charset = utf-8
end_of_line = crlf
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
Expand Down
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.bat text eol=crlf
*.sh text eol=lf
gradlew text eol=lf
mvnw text eol=lf
Expand Down
4 changes: 2 additions & 2 deletions docs/_sidebar.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- [Overview](/en-us/)
- **Getting started**
- [Quick start](/en-us/quickstart)
- [Quick start](/en-us/quickstart)
- **Links**
- [Changelog](/en-us/changelog)
- [![Github](https://icongram.jgog.in/simple/github.svg?color=808080&size=16)Github](https://github.com/ymind/rsql-querydsl)
- [Github](https://github.com/ymind/rsql-querydsl)
4 changes: 2 additions & 2 deletions docs/zh-cn/_sidebar.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- [概述](/zh-cn/)
- **入门**
- [开始](/zh-cn/quickstart)
- [开始](/zh-cn/quickstart)
- **Links**
- [更新日志](/zh-cn/changelog)
- [![Github](https://icongram.jgog.in/simple/github.svg?color=808080&size=16)Github](https://github.com/ymind/rsql-querydsl)
- [Github](https://github.com/ymind/rsql-querydsl)
3 changes: 2 additions & 1 deletion src/test/kotlin/team/yi/rsql/querydsl/test/BaseRsqlTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ abstract class BaseRsqlTest {
protected lateinit var entityManager: EntityManager

@Suppress("LeakingThis")
protected val rsqlConfig: RsqlConfig = RsqlConfig.Builder(entityManager).build()
protected val rsqlConfig: RsqlConfig
get() = RsqlConfig.Builder(entityManager).build()

@BeforeAll
fun initData() {
Expand Down

0 comments on commit 3a5d57d

Please sign in to comment.