Skip to content

Commit

Permalink
Update scalafmt-core to 3.0.8 (#469)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored Nov 4, 2021
1 parent d4bdc05 commit 3ade4bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.0.7"
version = "3.0.8"
maxColumn = 120
align.preset = most
align.multiline = false
Expand Down
6 changes: 3 additions & 3 deletions redis/src/main/scala/zio/redis/TestExecutor.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2721,7 +2721,7 @@ private[redis] final class TestExecutor private (
isHash <- hashes.contains(name)
} yield !isString && !isSet && !isHyper && !isHash

//check whether the key is a hyperLogLog or unused.
// check whether the key is a hyperLogLog or unused.
private[this] def isHyperLogLog(name: String): ZSTM[Any, Nothing, Boolean] =
for {
isString <- strings.contains(name)
Expand All @@ -2731,7 +2731,7 @@ private[redis] final class TestExecutor private (
isSortedSet <- sortedSets.contains(name)
} yield !isString && !isSet && !isList && !isHash && !isSortedSet

//check whether the key is a hash or unused.
// check whether the key is a hash or unused.
private[this] def isHash(name: String): ZSTM[Any, Nothing, Boolean] =
for {
isString <- strings.contains(name)
Expand All @@ -2741,7 +2741,7 @@ private[redis] final class TestExecutor private (
isSortedSet <- sortedSets.contains(name)
} yield !isString && !isSet && !isList && !isHyper && !isSortedSet

//check whether the key is a hash or unused.
// check whether the key is a hash or unused.
private[this] def isSortedSet(name: String): ZSTM[Any, Nothing, Boolean] =
for {
isString <- strings.contains(name)
Expand Down

0 comments on commit 3ade4bf

Please sign in to comment.