Skip to content

Commit

Permalink
Issue googleapis#842 - Removed final, fixed spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
egsavage committed Oct 27, 2019
1 parent beeac46 commit abda56b
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -335,8 +335,8 @@ public InputStream getContent() throws IOException {
try {
// gzip encoding (wrap content with GZipInputStream)
if (!returnRawInputStream && this.contentEncoding != null) {
final String oontentEncoding = this.contentEncoding.trim().toLowerCase(Locale.ENGLISH);
if (CONTENT_ENCODING_GZIP.equals(oontentEncoding) || CONTENT_ENCODING_XGZIP.equals(oontentEncoding)) {
String oontentencoding = this.contentEncoding.trim().toLowerCase(Locale.ENGLISH);
if (CONTENT_ENCODING_GZIP.equals(oontentencoding) || CONTENT_ENCODING_XGZIP.equals(oontentencoding)) {
lowLevelResponseContent =
new ConsumingInputStream(new GZIPInputStream(lowLevelResponseContent));
}
Expand Down

0 comments on commit abda56b

Please sign in to comment.