Code formatting to pass checkStyle.
This commit is contained in:
parent
3ad429aa6b
commit
94410c5dbc
@ -224,13 +224,44 @@ public abstract class Downloader {
|
|||||||
Downloader.this.close();
|
Downloader.this.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override public int available() throws IOException { return toWrap.available(); }
|
@Override
|
||||||
@Override public void mark(int readlimit) { toWrap.mark(readlimit); }
|
public int available() throws IOException {
|
||||||
@Override public boolean markSupported() { return toWrap.markSupported(); }
|
return toWrap.available();
|
||||||
@Override public int read(@NonNull byte[] buffer) throws IOException { return toWrap.read(buffer); }
|
}
|
||||||
@Override public int read(@NonNull byte[] buffer, int byteOffset, int byteCount) throws IOException { return toWrap.read(buffer, byteOffset, byteCount); }
|
|
||||||
@Override public synchronized void reset() throws IOException { toWrap.reset(); }
|
@Override
|
||||||
@Override public long skip(long byteCount) throws IOException { return toWrap.skip(byteCount); }
|
public void mark(int readlimit) {
|
||||||
@Override public int read() throws IOException { return toWrap.read(); }
|
toWrap.mark(readlimit);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean markSupported() {
|
||||||
|
return toWrap.markSupported();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int read(@NonNull byte[] buffer) throws IOException {
|
||||||
|
return toWrap.read(buffer);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int read(@NonNull byte[] buffer, int byteOffset, int byteCount) throws IOException {
|
||||||
|
return toWrap.read(buffer, byteOffset, byteCount);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public synchronized void reset() throws IOException {
|
||||||
|
toWrap.reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public long skip(long byteCount) throws IOException {
|
||||||
|
return toWrap.skip(byteCount);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int read() throws IOException {
|
||||||
|
return toWrap.read();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user