| 40 | } |
| 41 | |
| 42 | public static class BigTestStructure extends Structure { |
| 43 | public static final List<String> FIELDS = createFieldsOrder("field1", "field2"); |
| 44 | public long field1; |
| 45 | public long field2; |
| 46 | @Override |
| 47 | protected List<String> getFieldOrder() { |
| 48 | return FIELDS; |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | public static class IntStructure extends Structure { |
| 53 | public static final List<String> FIELDS = createFieldsOrder("value"); |
nothing calls this directly
no test coverage detected
searching dependent graphs…