Skip to content

Commit

Permalink
Fixing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
atshaw43 committed Dec 12, 2023
1 parent 9a186fe commit bd94e8c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,8 @@ private HashMap<String, Object> extractResponseParameters(
Optional<Map> parameterValue = response.getValueForField(key, Map.class);
if (parameterValue.isPresent()) {
String renameTo = descriptor.getRenameTo() != null ? descriptor.getRenameTo() : key;
parameters.put(normalizeParameterName(S
NAKE_CASE_NAMING_STRATEGY.translate(renameTo)), parameterValue.get().keySet());
parameters.put(normalizeParameterName(
SNAKE_CASE_NAMING_STRATEGY.translate(renameTo)), parameterValue.get().keySet());
}
} else if (descriptor.isList() && descriptor.shouldGetCount()) {
SdkResponse response = context.response();
Expand Down

0 comments on commit bd94e8c

Please sign in to comment.