Index: /trunk/src/org/openstreetmap/josm/tools/HttpClient.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/tools/HttpClient.java	(revision 9914)
+++ /trunk/src/org/openstreetmap/josm/tools/HttpClient.java	(revision 9915)
@@ -271,5 +271,6 @@
                 if (uncompressAccordingToContentDisposition && Compression.NONE.equals(compression)) {
                     final String contentDisposition = getHeaderField("Content-Disposition");
-                    final Matcher matcher = Pattern.compile("filename=\"([^\"]+)\"").matcher(contentDisposition != null ? contentDisposition : "");
+                    final Matcher matcher = Pattern.compile("filename=\"([^\"]+)\"").matcher(
+                            contentDisposition != null ? contentDisposition : "");
                     if (matcher.find()) {
                         Main.debug("Uncompressing input stream according to Content-Disposition header: {0}", contentDisposition);
