We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9a5bf6 commit 8076998Copy full SHA for 8076998
dd-java-agent/instrumentation/avro/src/main/java/datadog/trace/instrumentation/avro/SchemaExtractor.java
@@ -48,7 +48,8 @@ public static boolean extractProperty(
48
type = "#/components/schemas/" + field.schema().getElementType().getFullName();
49
if (!extractSchema(field.schema().getElementType(), builder, depth)) {
50
return false;
51
- };
+ }
52
+ ;
53
}
54
break;
55
case MAP:
@@ -59,7 +60,8 @@ public static boolean extractProperty(
59
60
values = "#/components/schemas/" + field.schema().getValueType().getFullName();
61
if (!extractSchema(field.schema().getValueType(), builder, depth)) {
62
63
64
65
66
description = "Map type with " + keys + " keys and " + values + " values";
67
0 commit comments