fix all test

This commit is contained in:
Looly
2024-09-24 12:48:52 +08:00
parent 702253aaf6
commit 68a6994858
3 changed files with 11 additions and 5 deletions

View File

@@ -65,7 +65,6 @@ public class JSONPrimitiveTypeAdapter implements MatcherJSONSerializer<Object>,
public Object deserialize(final JSON json, final Type deserializeType) {
final Object value = json.asJSONPrimitive().getValue();
if (null != value && TypeUtil.getClass(deserializeType).isAssignableFrom(value.getClass())) {
return value;
}