(LoadContext context, PaperInfo pi)
| 54 | } |
| 55 | |
| 56 | @Override |
| 57 | public String[] unparse(LoadContext context, PaperInfo pi) |
| 58 | { |
| 59 | String info = pi.getSortKey(); |
| 60 | if (info == null) |
| 61 | { |
| 62 | // Probably an error |
| 63 | return null; |
| 64 | } |
| 65 | return new String[]{info}; |
| 66 | } |
| 67 | |
| 68 | @Override |
| 69 | public Class<PaperInfo> getTokenClass() |
nothing calls this directly
no test coverage detected