Mercurial > dive4elements > http-client
changeset 119:5aad20399cbd
Fixed missing import
author | mschaefer |
---|---|
date | Wed, 13 Jun 2018 19:09:41 +0200 |
parents | 79169a0b5a0d |
children | 9b1e165bf7d7 |
files | src/main/java/org/dive4elements/artifacts/httpclient/http/HttpClientImpl.java |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/main/java/org/dive4elements/artifacts/httpclient/http/HttpClientImpl.java Wed Jun 13 19:00:08 2018 +0200 +++ b/src/main/java/org/dive4elements/artifacts/httpclient/http/HttpClientImpl.java Wed Jun 13 19:09:41 2018 +0200 @@ -39,6 +39,7 @@ import org.dive4elements.artifacts.httpclient.objects.ArtifactFactory; import org.dive4elements.artifacts.httpclient.utils.ArtifactProtocolUtils; import org.dive4elements.artifacts.httpclient.utils.ArtifactCreator; +import org.dive4elements.artifacts.httpclient.utils.XMLUtils; /** * Client to artifact-server. @@ -162,7 +163,7 @@ } catch (IOException ioe) { throw new ConnectionException( - "Connection to server failed. No Artifact created. " + XMLUtils.toString(doc), ioe); + "Connection to server failed. No Artifact created.\n" + XMLUtils.toString(doc), ioe); } }