Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
seakayone committed Nov 25, 2024
1 parent e1bb20e commit b514744
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import java.time.Instant
import java.util.UUID
import scala.language.implicitConversions
import scala.util.Try

import dsp.errors.AssertionException
import dsp.errors.BadRequestException
import dsp.errors.NotFoundException
Expand Down Expand Up @@ -682,7 +683,9 @@ object ValueContentV2 {
FileValueContentV2Optics.licenseOption
.filter(_.isEmpty)
.replace(license)
.andThen(FileValueContentV2Optics.copyRightAttributionOption.filter(_.isEmpty).replace(copyrightAttribution))(fvc)
.andThen(FileValueContentV2Optics.copyRightAttributionOption.filter(_.isEmpty).replace(copyrightAttribution))(
fvc,
)
case other => other
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import zio.*

import java.time.Instant
import java.util.UUID

import dsp.errors.*
import dsp.valueobjects.UuidUtil
import org.knora.webapi.*
Expand Down

0 comments on commit b514744

Please sign in to comment.