Skip to content

Commit eee571b

Browse files
committed
Fixed ktlint.
1 parent dece61c commit eee571b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

aztec/src/main/kotlin/org/wordpress/aztec/spans/AztecPreformatSpan.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ open class AztecPreformatSpan(
8080
fm.ascent -= preformatStyle.verticalPadding
8181
fm.top -= preformatStyle.verticalPadding
8282

83-
if(!isLastLine){
83+
if (!isLastLine) {
8484
fm.descent = originalDescent
8585
fm.bottom = originalBottom
8686
}
@@ -89,7 +89,7 @@ open class AztecPreformatSpan(
8989
fm.descent += preformatStyle.verticalPadding
9090
fm.bottom += preformatStyle.verticalPadding
9191

92-
if(!isFirstLine){
92+
if (!isFirstLine) {
9393
fm.ascent = originalAscent
9494
fm.top = originalTop
9595
}

aztec/src/main/kotlin/org/wordpress/aztec/spans/AztecQuoteSpan.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ open class AztecQuoteSpan(
110110
fm.ascent -= quoteStyle.verticalPadding
111111
fm.top -= quoteStyle.verticalPadding
112112

113-
if(!isLastLine){
113+
if (!isLastLine) {
114114
fm.descent = originalDescent
115115
fm.bottom = originalBottom
116116
}
@@ -119,7 +119,7 @@ open class AztecQuoteSpan(
119119
fm.descent += quoteStyle.verticalPadding
120120
fm.bottom += quoteStyle.verticalPadding
121121

122-
if(!isFirstLine){
122+
if (!isFirstLine) {
123123
fm.ascent = originalAscent
124124
fm.top = originalTop
125125
}

0 commit comments

Comments
 (0)