1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Added @Override annotations to fix warnings

This commit is contained in:
cketti 2011-04-01 04:36:29 +02:00
parent 319c9b0693
commit 867b251e6d

View File

@ -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;
} }