Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "2.7.3"
version = "2.7.4"

maxColumn = 140
assumeStandardLibraryStripMargin = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,7 @@ object AdvancedConfig {
)
}

/**
* @param warnIfSetKeyspace Whether a warning is logged when a request (such as a CQL `USE ...`) changes the active
/** @param warnIfSetKeyspace Whether a warning is logged when a request (such as a CQL `USE ...`) changes the active
* keyspace.
* @param logWarnings Whether logging of server warnings generated during query execution should be disabled by the
* driver.
Expand Down Expand Up @@ -661,8 +660,7 @@ object SchemaAgreementConfig {
val Default: SchemaAgreementConfig = SchemaAgreementConfig(200.milliseconds, 10.seconds, true)
}

/**
* @param prepareOnAllNodes Overridable in a profile.
/** @param prepareOnAllNodes Overridable in a profile.
*/
final case class PreparedStatementsConfig(
prepareOnAllNodes: Boolean = PreparedStatementsConfig.Default.prepareOnAllNodes,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ class ConfigurableThreadFactory(config: Config) extends ThreadFactory with ForkJ

object ConfigurableThreadFactory {

/**
* @param nameFormat Formatted with long number, e.g. my-thread-%02d
/** @param nameFormat Formatted with long number, e.g. my-thread-%02d
*/
final case class Config(
nameFormat: Option[String] = None,
Expand Down