Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adopt JSpecify #890

Merged
merged 18 commits into from
Jan 4, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Non-Nullable Type
  • Loading branch information
jeffgbutler committed Jan 2, 2025
commit 147d40de17b1a263e37004c025e8c2d585567e6b
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ class KCustomRenderingTest {
}
}

private fun <T> dereference(column: SqlColumn<T>, attribute: String) =
private fun <T : Any> dereference(column: SqlColumn<T>, attribute: String) =
SqlColumn.of<String>(column.name() + "->>'" + attribute + "'", column.table(), JDBCType.VARCHAR)

companion object {
Expand Down