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 99b74df commit 9ffeb75Copy full SHA for 9ffeb75
src/main/java/org/apache/ibatis/executor/resultset/PrimitiveTypes.java
@@ -39,7 +39,7 @@ public PrimitiveTypes() {
39
40
private void add(final Class<?> primitiveType, final Class<?> wrapperType) {
41
primitiveToWrappers.put(primitiveType, wrapperType);
42
- primitiveToWrappers.put(wrapperType, primitiveType);
+ wrappersToPrimitives.put(wrapperType, primitiveType);
43
}
44
45
public Class<?> getWrapper(final Class<?> primitiveType) {
0 commit comments