Skip to content

Commit

Permalink
review: renaming facade to sea_front
Browse files Browse the repository at this point in the history
  • Loading branch information
maximeperrault committed Oct 15, 2024
1 parent 4c17803 commit ad67205
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import org.slf4j.LoggerFactory
@UseCase
class SaveDashboard(
private val dashboardRepository: IDashboardRepository,
private val facadeAreasRepository: IFacadeAreasRepository
private val facadeAreasRepository: IFacadeAreasRepository,
) {
private val logger = LoggerFactory.getLogger(SaveDashboard::class.java)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class DashboardDataInput(
reportings = reportings,
regulatoryAreas = regulatoryAreas,
vigilanceAreas = vigilanceAreas,
seaFront = null
seaFront = null,
)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ data class DashboardModel(
regulatoryAreas = regulatoryAreas,
reportings = reportings,
vigilanceAreas = vigilanceAreas,
seaFront = seaFront
seaFront = seaFront,
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class DashboardFixture {
id: UUID? = null,
name: String = "",
comments: String = "",
seaFront: String = "",
seaFront: String? = null,
geom: Geometry = WKTReader().read("MULTIPOINT ((-1.548 44.315),(-1.245 44.305))"),
amps: List<Int> = listOf(),
regulatoryAreas: List<Int> = listOf(),
Expand All @@ -33,7 +33,7 @@ class DashboardFixture {
reportings = reportings,
vigilanceAreas = vigilanceAreas,
controlUnits = controlUnits,
seaFront = seaFront
seaFront = seaFront,
)
}
}
Expand Down

0 comments on commit ad67205

Please sign in to comment.