Skip to content

Commit

Permalink
Fix copy-paste issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tamasvajk committed Oct 31, 2024
1 parent d7b4f21 commit 9d443b1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ private fun KotlinFileExtractor.extractBinaryExpression(
KtTokens.LT -> extractBinaryExpression(expression, callable, parent, tw::writeExprs_ltexpr)
KtTokens.GT -> extractBinaryExpression(expression, callable, parent, tw::writeExprs_gtexpr)
KtTokens.LTEQ -> extractBinaryExpression(expression, callable, parent, tw::writeExprs_leexpr)
KtTokens.GTEQ -> extractBinaryExpression(expression, callable, parent, tw::writeExprs_gtexpr)
KtTokens.GTEQ -> extractBinaryExpression(expression, callable, parent, tw::writeExprs_geexpr)
else -> TODO("error")
}
} else {
Expand Down

0 comments on commit 9d443b1

Please sign in to comment.