diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-11 15:55:02 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-12 08:43:14 +0200 |
commit | 539c75b910f518a1fe51e9a21f6368a91c69ed88 (patch) | |
tree | 8e6b0c4334960d20c6faa2466be62f86a6b93222 /xmlsecurity | |
parent | c59804173be99e5ee922d859271c6660695d0ade (diff) |
strip some linefeeds from the end of debug output
Change-Id: I2821969d86b7f8cee53404e6a0acfbebbe53b3ac
Reviewed-on: https://gerrit.libreoffice.org/39824
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/test_docs/tools/httpserv/src/httpserv/Main.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlsecurity/test_docs/tools/httpserv/src/httpserv/Main.java b/xmlsecurity/test_docs/tools/httpserv/src/httpserv/Main.java index b6d2d548c319..1f9fd91d2364 100644 --- a/xmlsecurity/test_docs/tools/httpserv/src/httpserv/Main.java +++ b/xmlsecurity/test_docs/tools/httpserv/src/httpserv/Main.java @@ -130,7 +130,7 @@ class MyHandler implements HttpHandler { throw new IOException("The file " + fileRequest + " does not exist!"); } else if (fileRequest.isDirectory()) { - throw new IOException(fileRequest + " is a directory!\n"); + throw new IOException(fileRequest + " is a directory!"); } |