Skip to content

Commit 490b606

Browse files
committed
chore: run scalafmt
1 parent 3400d4e commit 490b606

File tree

1 file changed

+3
-3
lines changed
  • modules/db-skunk/src/main/scala/pillars/db

1 file changed

+3
-3
lines changed

modules/db-skunk/src/main/scala/pillars/db/db.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,17 +179,17 @@ object DatabaseTable extends RefinedSubtype[String, DatabaseTableConstraint]
179179

180180
private type DatabaseUserConstraint = Not[Blank] `DescribedAs` "Database user must not be blank"
181181

182-
type DatabaseUser = DatabaseUser.T
182+
type DatabaseUser = DatabaseUser.T
183183
object DatabaseUser extends RefinedSubtype[String, DatabaseUserConstraint]
184184

185185
private type DatabasePasswordConstraint = Not[Blank] `DescribedAs` "Database password must not be blank"
186186

187-
type DatabasePassword = DatabasePassword.T
187+
type DatabasePassword = DatabasePassword.T
188188
object DatabasePassword extends RefinedSubtype[String, DatabasePasswordConstraint]
189189

190190
private type PoolSizeConstraint = GreaterEqual[1] `DescribedAs` "Pool size must be greater or equal to 1"
191191

192-
type PoolSize = PoolSize.T
192+
type PoolSize = PoolSize.T
193193
object PoolSize extends RefinedSubtype[Int, PoolSizeConstraint]
194194

195195
private type VersionConstraint =

0 commit comments

Comments
 (0)