Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
proxy to existing method
Co-authored-by: Jack Smith <72623970+jasmith-hs@users.noreply.github.com>
  • Loading branch information
ccutrer and jasmith-hs authored Mar 14, 2025
commit 9c60bf5114a0e80492b3b2c44fa8fe39fa44dc1c
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,7 @@ protected Map<String, Object> delegate() {
}

public Object get(String key, Object defaultValue) {
if (!map.containsKey(key)) {
return defaultValue;
}
return map.get(key);
return getOrDefault(key, defaultValue);
}

@Override
Expand Down