Skip to content

Commit

Permalink
alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
salamonpavel committed Jan 4, 2024
1 parent c000455 commit 2fd7487
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ class DoobieStreamingEngine[F[_]: Async](val transactor: Transactor[F], defaultC
* Executes a Doobie query and returns the result as an [[fs2.Stream]] for effect type `F` and value type `R`.
*
* @param query the [[DoobieQuery]] to execute
* @param readR the [[doobie.Read]] instance used to read the query result into `R`
* @return the query result as an [[fs2.Stream]] for effect type `F` and value type `R`
*/
override def runStreaming[R](query: QueryType[R]): fs2.Stream[F, R] =
Expand All @@ -50,7 +49,6 @@ class DoobieStreamingEngine[F[_]: Async](val transactor: Transactor[F], defaultC
*
* @param query the Doobie query to execute
* @param chunkSize the chunk size to use when streaming the query result
* @param readR the [[doobie.Read]] instance used to read the query result into `R`
* @return the query result as an [[fs2.Stream]] for effect type `F` and value type `R`
*/
override def runStreamingWithChunkSize[R](query: QueryType[R], chunkSize: Int): fs2.Stream[F, R] =
Expand Down
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import sbt._
object Dependencies {

private def commonDependencies(scalaVersion: String): Seq[ModuleID] = Seq(
"org.typelevel" %% "cats-core" % "2.9.0",
"org.typelevel" %% "cats-core" % "2.9.0",
"org.scalatest" %% "scalatest" % "3.1.0" % "test,it",
"org.scalatest" %% "scalatest-flatspec" % "3.2.0" % "test,it",
"org.scalatestplus" %% "mockito-1-10" % "3.1.0.0" % "test,it"
Expand Down Expand Up @@ -56,8 +56,8 @@ object Dependencies {

def doobieDependencies(scalaVersion: String): Seq[ModuleID] = {
commonDependencies(scalaVersion) ++ Seq(
"org.tpolecat" %% "doobie-core" % "1.0.0-RC2",
"org.tpolecat" %% "doobie-hikari" % "1.0.0-RC2",
"org.tpolecat" %% "doobie-core" % "1.0.0-RC2",
"org.tpolecat" %% "doobie-hikari" % "1.0.0-RC2",
"org.tpolecat" %% "doobie-postgres" % "1.0.0-RC2"
)
}
Expand Down

0 comments on commit 2fd7487

Please sign in to comment.