raphaelts3 / wyd2encdec

Undocumented constructor found JAVA-D1002
Documentation
Minor
2 occurrences in this check
Consider adding a doc comment for PacketInputStream
11        super(buf);
12    }
13
14    public PacketInputStream(byte[] buf, int offset, int length) {15        super(buf, offset, length);16    }17
18    public synchronized byte readByte() throws IOException {
19        read(tmpBuffer, 0, 1);
Consider adding a doc comment for PacketInputStream
 7
 8    private byte[] tmpBuffer = new byte[8];
 9
10    public PacketInputStream(byte[] buf) {11        super(buf);12    }13
14    public PacketInputStream(byte[] buf, int offset, int length) {
15        super(buf, offset, length);