diff --git a/module-client/src/examples/org/apache/http/examples/client/ClientAbortMethod.java b/module-client/src/examples/org/apache/http/examples/client/ClientAbortMethod.java index 9d7e1970b..3197916f1 100644 --- a/module-client/src/examples/org/apache/http/examples/client/ClientAbortMethod.java +++ b/module-client/src/examples/org/apache/http/examples/client/ClientAbortMethod.java @@ -55,7 +55,6 @@ public class ClientAbortMethod { System.out.println(response.getStatusLine()); if (entity != null) { System.out.println("Response content length: " + entity.getContentLength()); - System.out.println("Chunked?: " + entity.isChunked()); } System.out.println("----------------------------------------"); diff --git a/module-client/src/examples/org/apache/http/examples/client/ClientAuthentication.java b/module-client/src/examples/org/apache/http/examples/client/ClientAuthentication.java index 19a81ee93..437d93030 100644 --- a/module-client/src/examples/org/apache/http/examples/client/ClientAuthentication.java +++ b/module-client/src/examples/org/apache/http/examples/client/ClientAuthentication.java @@ -61,7 +61,6 @@ public class ClientAuthentication { System.out.println(response.getStatusLine()); if (entity != null) { System.out.println("Response content length: " + entity.getContentLength()); - System.out.println("Chunked?: " + entity.isChunked()); } if (entity != null) { entity.consumeContent(); diff --git a/module-client/src/examples/org/apache/http/examples/client/ClientCustomContext.java b/module-client/src/examples/org/apache/http/examples/client/ClientCustomContext.java index 22693998e..62a1e134c 100644 --- a/module-client/src/examples/org/apache/http/examples/client/ClientCustomContext.java +++ b/module-client/src/examples/org/apache/http/examples/client/ClientCustomContext.java @@ -76,7 +76,6 @@ public class ClientCustomContext { System.out.println(response.getStatusLine()); if (entity != null) { System.out.println("Response content length: " + entity.getContentLength()); - System.out.println("Chunked?: " + entity.isChunked()); } List cookies = cookieStore.getCookies(); for (int i = 0; i < cookies.size(); i++) { diff --git a/module-client/src/examples/org/apache/http/examples/client/ClientCustomSSL.java b/module-client/src/examples/org/apache/http/examples/client/ClientCustomSSL.java index 38c6ee249..e2b9d5f35 100644 --- a/module-client/src/examples/org/apache/http/examples/client/ClientCustomSSL.java +++ b/module-client/src/examples/org/apache/http/examples/client/ClientCustomSSL.java @@ -72,7 +72,6 @@ public class ClientCustomSSL { System.out.println(response.getStatusLine()); if (entity != null) { System.out.println("Response content length: " + entity.getContentLength()); - System.out.println("Chunked?: " + entity.isChunked()); } if (entity != null) { entity.consumeContent(); diff --git a/module-client/src/examples/org/apache/http/examples/client/ClientPreemptiveBasicAuthentication.java b/module-client/src/examples/org/apache/http/examples/client/ClientPreemptiveBasicAuthentication.java index 248a2d878..66d2e8c78 100644 --- a/module-client/src/examples/org/apache/http/examples/client/ClientPreemptiveBasicAuthentication.java +++ b/module-client/src/examples/org/apache/http/examples/client/ClientPreemptiveBasicAuthentication.java @@ -95,7 +95,6 @@ public class ClientPreemptiveBasicAuthentication { System.out.println(response.getStatusLine()); if (entity != null) { System.out.println("Response content length: " + entity.getContentLength()); - System.out.println("Chunked?: " + entity.isChunked()); entity.consumeContent(); } } diff --git a/module-client/src/examples/org/apache/http/examples/client/ClientPreemptiveDigestAuthentication.java b/module-client/src/examples/org/apache/http/examples/client/ClientPreemptiveDigestAuthentication.java index 75006b5b6..4464ac2b9 100644 --- a/module-client/src/examples/org/apache/http/examples/client/ClientPreemptiveDigestAuthentication.java +++ b/module-client/src/examples/org/apache/http/examples/client/ClientPreemptiveDigestAuthentication.java @@ -101,7 +101,6 @@ public class ClientPreemptiveDigestAuthentication { System.out.println(response.getStatusLine()); if (entity != null) { System.out.println("Response content length: " + entity.getContentLength()); - System.out.println("Chunked?: " + entity.isChunked()); entity.consumeContent(); } } diff --git a/module-client/src/examples/org/apache/http/examples/client/ClientProxyAuthentication.java b/module-client/src/examples/org/apache/http/examples/client/ClientProxyAuthentication.java index 56a718ba1..0127d3bab 100644 --- a/module-client/src/examples/org/apache/http/examples/client/ClientProxyAuthentication.java +++ b/module-client/src/examples/org/apache/http/examples/client/ClientProxyAuthentication.java @@ -70,7 +70,6 @@ public class ClientProxyAuthentication { System.out.println(response.getStatusLine()); if (entity != null) { System.out.println("Response content length: " + entity.getContentLength()); - System.out.println("Chunked?: " + entity.isChunked()); } if (entity != null) { entity.consumeContent();