(CharFlow seq)
| 1664 | } |
| 1665 | |
| 1666 | public static long decodeLong(CharFlow seq) { |
| 1667 | long number = decodeUnsigned(seq); |
| 1668 | long result = number / 2; |
| 1669 | if (number % 2 != 0) { |
| 1670 | result = -result; |
| 1671 | } |
| 1672 | return result; |
| 1673 | } |
| 1674 | |
| 1675 | public static char encodeDigit(int digit) { |
| 1676 | if (digit < 2) { |
nothing calls this directly
no test coverage detected