Skip to content

Commit

Permalink
JetBrains#623 Fix smart cast warning by replacing not-null assertion …
Browse files Browse the repository at this point in the history
…with null-safe call
  • Loading branch information
Dmitry Levin committed Jul 7, 2023
1 parent 381fb17 commit 24ca601
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ class WindowFunctionDefinition<T>(
+" OVER("
appendPartitionByClause()
appendOrderByClause()
if (frameClause != null) {
frameClause?.let {
+" "
frameClause!!.toQueryBuilder(this)
it.toQueryBuilder(this)
}
+")"
}
Expand Down

0 comments on commit 24ca601

Please sign in to comment.