Skip to content

Commit 5b78afd

Browse files
committed
Fix checkstyle error´s
1 parent 48e4bc2 commit 5b78afd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

httpclient5-testing/src/test/java/org/apache/hc/client5/testing/extension/sync/TestClientBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ default TestClientBuilder addExecInterceptorLast(String name, ExecChainHandler i
9898
throw new UnsupportedOperationException("Operation not supported by " + getProtocolLevel());
9999
}
100100

101-
default TestClientBuilder setNoWrap(boolean noWrap){
101+
default TestClientBuilder setNoWrap(boolean noWrap) {
102102
return this;
103103
}
104104

httpclient5/src/main/java/org/apache/hc/client5/http/impl/classic/ContentCompressionExec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public ContentCompressionExec(final boolean ignoreUnknown, final boolean noWrap)
118118
* </ul>
119119
*/
120120
public ContentCompressionExec() {
121-
this(null, true, false);
121+
this(null, true,false);
122122
}
123123

124124

httpclient5/src/test/java/org/apache/hc/client5/http/entity/TestEntityBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ void testBuildGZipped() {
129129
}
130130

131131
@Test
132-
public void testCompressionDecompression() throws Exception {
132+
void testCompressionDecompression() throws Exception {
133133
final String originalContent = "some kind of text";
134134
final StringEntity originalEntity = new StringEntity(originalContent, ContentType.TEXT_PLAIN);
135135
final HttpEntity compressedEntity = CompressorFactory.INSTANCE.compressEntity(originalEntity, "gz");

0 commit comments

Comments
 (0)