Skip to content

Commit e07e543

Browse files
committed
address PR review
1 parent ff30fe2 commit e07e543

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

serializer-deserializer/src/main/java/com/amazonaws/services/schemaregistry/utils/apicurio/FileDescriptorUtils.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
import static com.google.common.base.CaseFormat.LOWER_UNDERSCORE;
4444
import static com.google.common.base.CaseFormat.UPPER_CAMEL;
4545
import static com.google.protobuf.DescriptorProtos.*;
46+
import static com.squareup.wire.schema.Options.ONEOF_OPTIONS;
4647

4748
/**
4849
* @author Fabian Martinez, Ravindranath Kakarla, Carles Arnal
@@ -584,7 +585,7 @@ private static String determineFieldType(ProtoType protoType, Schema schema) {
584585
* This method generates the synthetic one-of from a Proto3 optional field.
585586
*/
586587
private static OneOf getProto3OptionalField(Field field) {
587-
return new OneOf("_" + field.getName(), "", Collections.singletonList(field), field.getLocation(), field.getOptions());
588+
return new OneOf("_" + field.getName(), "", Collections.singletonList(field), DEFAULT_LOCATION, new Options(ONEOF_OPTIONS, Collections.emptyList()));
588589
}
589590

590591
private static EnumDescriptorProto enumElementToProto(EnumType enumElem) {

0 commit comments

Comments
 (0)