Maj Vers 7.10

This commit is contained in:
Nicolas Héron 2018-09-03 17:23:14 +02:00
commit 9650ba55e9
4 changed files with 17 additions and 5 deletions

View file

@ -30,7 +30,9 @@ public class GenericRestAPIImpl implements UsedRestAPI {
try {
response = mapper.readValue(responseJson, objectRequest.getClass() );
if (responseJson != null) {
response = mapper.readValue(responseJson, objectRequest.getClass());
}
} catch (IOException e) {
logger.error("GenericRestAPIImpl.runSession.readValue", e);
}