| 50 | } |
| 51 | |
| 52 | public static class IntStructure extends Structure { |
| 53 | public static final List<String> FIELDS = createFieldsOrder("value"); |
| 54 | public int value; |
| 55 | @Override |
| 56 | protected List<String> getFieldOrder() { |
| 57 | return FIELDS; |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | public static class SubIntStructure extends IntStructure {} |
| 62 |
nothing calls this directly
no test coverage detected
searching dependent graphs…