Skip to content

Commit af0d34f

Browse files
Anusienchanseokoh
andauthored
chore: fix various non-functional checkstyle warnings (#865)
* Fix various non-functional checkstyle warnings * Update google-http-client/src/main/java/com/google/api/client/http/GZipEncoding.java * Update google-http-client/src/main/java/com/google/api/client/http/GZipEncoding.java Co-authored-by: Chanseok Oh <[email protected]>
1 parent 3ad4831 commit af0d34f

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

google-http-client/src/main/java/com/google/api/client/http/GZipEncoding.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ public void close() throws IOException {
4545
try {
4646
flush();
4747
} catch (IOException ignored) {
48+
// fall through
4849
}
4950
}
5051
};

google-http-client/src/main/java/com/google/api/client/testing/util/TestableByteArrayInputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public TestableByteArrayInputStream(byte[] buf) {
4141
* @param offset offset in the buffer of the first byte to read
4242
* @param length maximum number of bytes to read from the buffer
4343
*/
44-
public TestableByteArrayInputStream(byte buf[], int offset, int length) {
44+
public TestableByteArrayInputStream(byte[] buf, int offset, int length) {
4545
super(buf);
4646
}
4747

google-http-client/src/main/java/com/google/api/client/util/ArrayValueMap.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
* or implied. See the License for the specific language governing permissions and limitations under
1212
* the License.
1313
*/
14+
1415
package com.google.api.client.util;
1516

1617
import java.lang.reflect.Field;

0 commit comments

Comments
 (0)