Sfoglia il codice sorgente

fix: handle void safety for Apache HttpClient

feature/quarkus-rest-bridge
Gabriele Zigurella 2 anni fa
parent
commit
821a8b4d0f
  1. 2
      liferay-plugins-sdk-6.2/portlets/portos-firma-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/firma/util/FirmaUtil.java

2
liferay-plugins-sdk-6.2/portlets/portos-firma-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/firma/util/FirmaUtil.java

@ -66,8 +66,10 @@ public class FirmaUtil {
} catch (IOException e) { } catch (IOException e) {
_log.error(e.getMessage()); _log.error(e.getMessage());
} finally { } finally {
if(client != null){
client.getConnectionManager().shutdown(); client.getConnectionManager().shutdown();
} }
}
return listaCodiciFiscali; return listaCodiciFiscali;
} }
} }

Caricamento…
Annulla
Salva