51525354555657585960
if (json != null) { try { Unmarshaller<M> unmarshaller = Unmarshallers.forModel(query.getModelClass()); result = unmarshaller.toModel(json); } catch (Exception e) { throw new UnmarshalException(query, json, e); } } return result; }
67686970717273747576
} else { try { Unmarshaller<M> unmarshaller = Unmarshallers.forModel(query.getModelClass()); result = unmarshaller.toModels(json); } catch (Exception e) { throw new UnmarshalException(query, json, e); } } return result; }
81828384858687888990