File tree 1 file changed +2
-2
lines changed
ksc-sdk-java-core/src/main/java/com/ksc/transform 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 17
17
import com .fasterxml .jackson .databind .DeserializationFeature ;
18
18
import com .fasterxml .jackson .databind .JsonNode ;
19
19
import com .fasterxml .jackson .databind .ObjectMapper ;
20
- import com .fasterxml .jackson .databind .PropertyNamingStrategy . PascalCaseStrategy ;
20
+ import com .fasterxml .jackson .databind .PropertyNamingStrategy ;
21
21
import com .ksc .KscServiceException ;
22
22
import com .ksc .annotation .SdkInternalApi ;
23
23
import com .ksc .annotation .ThreadSafe ;
@@ -34,7 +34,7 @@ public class JsonErrorUnmarshaller extends AbstractErrorUnmarshaller<JsonNode> {
34
34
35
35
private static final ObjectMapper MAPPER = new ObjectMapper ().configure (
36
36
DeserializationFeature .FAIL_ON_UNKNOWN_PROPERTIES , false ).setPropertyNamingStrategy (
37
- new PascalCaseStrategy () );
37
+ PropertyNamingStrategy . PASCAL_CASE_TO_CAMEL_CASE );
38
38
39
39
private final String handledErrorCode ;
40
40
You can’t perform that action at this time.
0 commit comments