mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-04 08:35:08 -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 {
|
||||
mCount++;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void write(byte b[], int offset, int len) throws IOException {
|
||||
mCount += len;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void write(byte[] b) throws IOException {
|
||||
mCount += b.length;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user