Skip to content

Commit

Permalink
feat(CB2-15349): re-ordering getters and setters
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanielRichards1 committed Dec 12, 2024
1 parent 3819cf1 commit ddc2d01
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/uk/gov/dvsa/model/cvs/AbandonedCertificate.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ public abstract class AbandonedCertificate extends Document {
@JsonProperty("ABANDONED_DATA")
protected AbandonedData data;

public Document setData(AbandonedData data) {
this.data = data;
return this;
}

@JsonProperty("Signature")
private Signature signature;

Expand All @@ -38,6 +33,11 @@ public AbandonedData getData() {
return data;
}

public Document setData(AbandonedData data) {
this.data = data;
return this;
}

public Signature getSignature() {
return signature;
}
Expand Down

0 comments on commit ddc2d01

Please sign in to comment.