Skip to content

Commit

Permalink
Corretto errore java.lang.UnsupportedOperationException durante la le…
Browse files Browse the repository at this point in the history
…ttura degli header di risposta delle chiamate tramite il client Http.
  • Loading branch information
pintorig committed Feb 7, 2022
1 parent 762cb65 commit 43d7181
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ private byte[] send(boolean soap, String azione, byte[] body, boolean isAzioneIn

List<String> list = null;
if(dumpResponse.getHeaders().containsKey(key)) {
list = Arrays.asList(StringUtils.split(dumpResponse.getHeaders().remove(key),","));
list = new ArrayList<String>(Arrays.asList(StringUtils.split(dumpResponse.getHeaders().remove(key),",")));
}
if(list==null) {
list = new ArrayList<String>();
Expand Down

0 comments on commit 43d7181

Please sign in to comment.