(LoadContext context, KitRace kitRace)
| 60 | } |
| 61 | |
| 62 | @Override |
| 63 | public String[] unparse(LoadContext context, KitRace kitRace) |
| 64 | { |
| 65 | CDOMReference<Race> race = kitRace.getRace(); |
| 66 | if (race == null) |
| 67 | { |
| 68 | return null; |
| 69 | } |
| 70 | return new String[]{race.getLSTformat(false)}; |
| 71 | } |
| 72 | |
| 73 | } |
nothing calls this directly
no test coverage detected