This repository was archived by the owner on Jan 22, 2019. It is now read-only.
File tree 3 files changed +6
-1
lines changed
src/main/java/com/fasterxml/jackson/dataformat/avro/schema
3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -15,4 +15,7 @@ Sterling Hoeree (shoeree@github)
15
15
JsonGenerator.Feature.IGNORE_UNKNOWN = true
16
16
(2.5.5)
17
17
18
+ Peter Royal (osi@github)
18
19
20
+ - Reported #26: Should indicate type that was requested when complaining about Any not being supported
21
+ (2.6.4)
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ Project: jackson-dataformat-avro
8
8
9
9
#23: MapWriteContext.createChildObjectContext() should call _schema.getValueType()
10
10
(reported by shoeree@github, cresny@github)
11
+ #26: Should indicate type that was requested when complaining about Any not being supported
12
+ (reported by Peter R)
11
13
12
14
2.6.3 (12-Oct-2015)
13
15
2.6.2 (15-Sep-2015)
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ public JsonNullFormatVisitor expectNullFormat(JavaType convertedType) {
148
148
@ Override
149
149
public JsonAnyFormatVisitor expectAnyFormat (JavaType convertedType ) {
150
150
// could theoretically create union of all possible types but...
151
- return _throwUnsupported ("'Any' type not supported yet" );
151
+ return _throwUnsupported ("'Any' type not supported: expectAnyFormat called with type " + convertedType );
152
152
}
153
153
154
154
/*
You can’t perform that action at this time.
0 commit comments