Skip to content

Commit 4b54ca0

Browse files
committed
Change Method Name
1 parent 3e117bd commit 4b54ca0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/kotlin/org/domaframework/doma/intellij/formatter/block/SqlOtherBlock.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ open class SqlOtherBlock(
4949
override fun setParentGroupBlock(block: SqlBlock?) {
5050
super.setParentGroupBlock(block)
5151
indent.indentLevel = IndentType.NONE
52-
indent.indentLen = createIntendLen()
52+
indent.indentLen = createIndentLen()
5353
indent.groupIndentLen = 0
5454
}
5555

5656
override fun buildChildren(): MutableList<AbstractBlock> = mutableListOf()
5757

5858
override fun getIndent(): Indent? = Indent.getSpaceIndent(indent.indentLen)
5959

60-
private fun createIntendLen(): Int {
60+
private fun createIndentLen(): Int {
6161
if (isUpdateColumnSubstitutions) {
6262
parentBlock?.let { return it.indent.groupIndentLen.plus(1) }
6363
?: return indent.indentLen

0 commit comments

Comments
 (0)