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