We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cc269f commit 4d1df7dCopy full SHA for 4d1df7d
codegen-lite/src/main/java/software/amazon/awssdk/codegen/lite/regions/RegionMetadataLoader.java
@@ -37,8 +37,7 @@ public static Partitions build(File path) {
37
private static Partitions loadPartitionFromStream(File stream, String location) {
38
39
try {
40
- return JSON.std.with(JSON.Feature.FAIL_ON_UNKNOWN_BEAN_PROPERTY)
41
- .with(JSON.Feature.USE_IS_GETTERS)
+ return JSON.std.with(JSON.Feature.USE_IS_GETTERS)
42
.beanFrom(Partitions.class, stream);
43
44
} catch (IOException | RuntimeException e) {
0 commit comments