(LoadContext context, Equipment eq)
| 56 | } |
| 57 | |
| 58 | @Override |
| 59 | public String[] unparse(LoadContext context, Equipment eq) |
| 60 | { |
| 61 | WieldCategory w = context.getObjectContext().getObject(eq, ObjectKey.WIELD); |
| 62 | if (w == null) |
| 63 | { |
| 64 | return null; |
| 65 | } |
| 66 | return new String[]{w.getKeyName()}; |
| 67 | } |
| 68 | |
| 69 | @Override |
| 70 | public Class<Equipment> getTokenClass() |
nothing calls this directly
no test coverage detected