Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 867b251e authored by cketti's avatar cketti
Browse files

Added @Override annotations to fix warnings

parent 319c9b06
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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;
    }