chore: lint code

This commit is contained in:
inotia00
2024-12-08 11:47:53 +09:00
parent cbac88b2b5
commit 99530e098c

View File

@ -181,8 +181,8 @@ public class StreamingDataRequest {
continue; continue;
try ( try (
InputStream inputStream = new BufferedInputStream(connection.getInputStream()); InputStream inputStream = new BufferedInputStream(connection.getInputStream());
ByteArrayOutputStream baos = new ByteArrayOutputStream() ByteArrayOutputStream baos = new ByteArrayOutputStream()
) { ) {
byte[] buffer = new byte[2048]; byte[] buffer = new byte[2048];
int bytesRead; int bytesRead;
@ -239,4 +239,4 @@ public class StreamingDataRequest {
public String toString() { public String toString() {
return "StreamingDataRequest{" + "videoId='" + videoId + '\'' + '}'; return "StreamingDataRequest{" + "videoId='" + videoId + '\'' + '}';
} }
} }