mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-17 06:55:03 -05:00
Added @Override annotations to fix warnings
This commit is contained in:
parent
319c9b0693
commit
867b251e6d
@ -21,9 +21,13 @@ public class CountingOutputStream extends OutputStream {
|
|||||||
public void write(int oneByte) throws IOException {
|
public void write(int oneByte) throws IOException {
|
||||||
mCount++;
|
mCount++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public void write(byte b[], int offset, int len) throws IOException {
|
public void write(byte b[], int offset, int len) throws IOException {
|
||||||
mCount += len;
|
mCount += len;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public void write(byte[] b) throws IOException {
|
public void write(byte[] b) throws IOException {
|
||||||
mCount += b.length;
|
mCount += b.length;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user