Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
- fixes null pointer exception
  • Loading branch information
temi committed Apr 23, 2024
1 parent 482788b commit 2f253c5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ class RecordConverter {
public static Map overrideFieldValues(Map source, Map additional) {

Map result = [:]
result << source
result << additional
result << (source ?: [:])
result << (additional ?: [:])

result
}
Expand Down

0 comments on commit 2f253c5

Please sign in to comment.