8000 Fix various non-functional checkstyle warnings · Anusien/google-http-java-client@e711a8c · GitHub
[go: up one dir, main page]

Skip to content

Commit e711a8c

Browse files
committed
Fix various non-functional checkstyle warnings
1 parent b06f0e9 commit e711a8c

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
@@ -43,6 +43,7 @@ public void close() throws IOException {
4343
try {
4444
flush();
4545
} catch (IOException ignored) {
46+
// Nothing else we can do here
4647
}
4748
}
4849
};

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)
0