(byte[] b)
| 67 | final int end; |
| 68 | |
| 69 | UTF8Input(byte[] b) { |
| 70 | this.b = b; |
| 71 | start = 0; |
| 72 | end = b.length; |
| 73 | } |
| 74 | |
| 75 | UTF8Input(byte[] b, int start, int end) { |
| 76 | if (end > b.length) { |
nothing calls this directly
no outgoing calls
no test coverage detected