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