(int size, int shift)
| 7 | public static class Field { |
| 8 | |
| 9 | public Field(int size, int shift) { |
| 10 | this(size, shift, 0); |
| 11 | } |
| 12 | |
| 13 | public Field(int size, int shift, int offset) { |
| 14 | this.size = size; |
nothing calls this directly
no test coverage detected