Skip to content

Commit

Permalink
rm redundant braces
Browse files Browse the repository at this point in the history
  • Loading branch information
seakayone committed Jan 20, 2025
1 parent 2e54510 commit c3c1955
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ trait WithFrom[-I, +A] {
from(in).fold(e => throw new IllegalArgumentException(e), identity)
}

trait StringValueCompanion[A <: StringValue] extends WithFrom[String, A] {}
trait StringValueCompanion[A <: StringValue] extends WithFrom[String, A]
object StringValueCompanion {

def nonEmpty: String => Validation[String, String] =
Expand Down

0 comments on commit c3c1955

Please sign in to comment.