Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/GzipPostMethod.java')
-rw-r--r--org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/GzipPostMethod.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/GzipPostMethod.java b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/GzipPostMethod.java
index 3b98eb726..1955ad2a4 100644
--- a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/GzipPostMethod.java
+++ b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/GzipPostMethod.java
@@ -57,12 +57,12 @@ public class GzipPostMethod extends PostMethod {
private boolean isZippedReply() {
// content-encoding:gzip can be set by a dedicated perl script or mod_gzip
boolean zipped = (null != this.getResponseHeader("Content-encoding") && this.getResponseHeader(
- "Content-encoding").getValue().equals(WebClientUtil.CONTENT_ENCODING_GZIP))
- ||
- // content-type: application/x-gzip can be set by any apache after 302 redirect, based on .gz suffix
- (null != this.getResponseHeader("Content-Type") && this.getResponseHeader("Content-Type")
- .getValue()
- .equals("application/x-gzip"));
+ "Content-encoding").getValue().equals(WebClientUtil.CONTENT_ENCODING_GZIP))
+ ||
+ // content-type: application/x-gzip can be set by any apache after 302 redirect, based on .gz suffix
+ (null != this.getResponseHeader("Content-Type") && this.getResponseHeader("Content-Type")
+ .getValue()
+ .equals("application/x-gzip"));
return zipped;
}
@@ -96,5 +96,5 @@ public class GzipPostMethod extends PostMethod {
}
return input;
}
-
+
}

Back to the top