(byte[] output, int firstByte, int value)
| 1071 | |
| 1072 | |
| 1073 | static void setOneBytes(byte[] output, int firstByte, int value) { |
| 1074 | output[firstByte] = (byte) (value & 0xFF); |
| 1075 | } |
| 1076 | |
| 1077 | |
| 1078 | private static class TestInput implements Http2Parser.Input { |
no outgoing calls
no test coverage detected