Skip to content

Commit

Permalink
RegexpMultiline: Blank line at start of method should be removed
Browse files Browse the repository at this point in the history
  • Loading branch information
dragonfly28 committed Sep 16, 2024
1 parent c0222bd commit 77b92cb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@

@Builder
public record BriefwahlvorbereitungWriteDTO(@NotNull java.util.List<WahlurneDTO> urnenAnzahl) {

}
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ public record UrnenwahlvorbereitungDTO(@NotNull String wahlbezirkID,
@Schema(requiredMode = Schema.RequiredMode.REQUIRED) long anzahlWahltische,
@Schema(requiredMode = Schema.RequiredMode.REQUIRED) long anzahlNebenraeume,
@NotNull @Size(min = 1) List<WahlurneDTO> urnenAnzahl) {

public UrnenwahlvorbereitungDTO(final String wahlbezirkID, final long anzahlWahlkabinen, final long anzahlWahltische, final long anzahlNebenraeume,
final List<WahlurneDTO> urnenAnzahl) {
final List<WahlurneDTO> urnenAnzahl) {
this.wahlbezirkID = wahlbezirkID;
this.anzahlWahlkabinen = anzahlWahlkabinen;
this.anzahlWahltische = anzahlWahltische;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ public record UrnenwahlvorbereitungWriteDTO(@Schema(requiredMode = Schema.Requir
@Schema(requiredMode = Schema.RequiredMode.REQUIRED) long anzahlWahltische,
@Schema(requiredMode = Schema.RequiredMode.REQUIRED) long anzahlNebenraeume,
@NotNull @Size(min = 1) List<WahlurneDTO> urnenAnzahl) {

public UrnenwahlvorbereitungWriteDTO(final long anzahlWahlkabinen, final long anzahlWahltische, final long anzahlNebenraeume,
final List<WahlurneDTO> urnenAnzahl) {
final List<WahlurneDTO> urnenAnzahl) {
this.anzahlWahlkabinen = anzahlWahlkabinen;
this.anzahlWahltische = anzahlWahltische;
this.anzahlNebenraeume = anzahlNebenraeume;
Expand Down

0 comments on commit 77b92cb

Please sign in to comment.