Skip to content

Commit a1a8793

Browse files
committed
Fix #466
1 parent 568005d commit a1a8793

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

release-notes/VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Project: jackson-databind
66

77
2.8.4 (not yet released)
88

9+
#466: Jackson ignores Type information when raw return type is BigDecimal or BigInteger
910
#1384: `@JsonDeserialize(keyUsing = ...)` does not work correctly together with
1011
DefaultTyping.NON_FINAL
1112
(reported by Oleg Z)

src/test/java/com/fasterxml/jackson/failing/TestTypeWithJsonValue466.java renamed to src/test/java/com/fasterxml/jackson/databind/jsontype/ext/JsonValueExtTypeIdTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fasterxml.jackson.failing;
1+
package com.fasterxml.jackson.databind.jsontype.ext;
22

33
import java.io.*;
44
import java.math.BigDecimal;
@@ -8,7 +8,7 @@
88
import com.fasterxml.jackson.databind.*;
99

1010
@SuppressWarnings("serial")
11-
public class TestTypeWithJsonValue466 extends BaseMapTest
11+
public class JsonValueExtTypeIdTest extends BaseMapTest
1212
{
1313
// The following is required for the testDecimalMetadata test case. That case fails.
1414
@JsonTypeName(value = "decimalValue")

0 commit comments

Comments
 (0)