Skip to content

Commit

Permalink
Merge pull request #109 from companieshouse/bugfix/dateTimeFix
Browse files Browse the repository at this point in the history
checkstyle
  • Loading branch information
JAndrewCH committed Mar 12, 2024
2 parents 2063638 + 75ccc58 commit ed60ba9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ public PscDocument transformPscOnInsert(

private PscSensitiveData transformSensitiveDataFields(SensitiveData sensitiveData) {
PscSensitiveData pscSensitiveData = new PscSensitiveData();
if(sensitiveData.getDateOfBirth() != null) {
if (sensitiveData.getDateOfBirth() != null) {
DateOfBirth dateOfBirth = new DateOfBirth(sensitiveData.getDateOfBirth());
pscSensitiveData.setDateOfBirth(dateOfBirth);
}
Expand Down

0 comments on commit ed60ba9

Please sign in to comment.