(String tokenSource, PlayerCharacter pc, ExportHandler eh)
| 37 | } |
| 38 | |
| 39 | @Override |
| 40 | public String getToken(String tokenSource, PlayerCharacter pc, ExportHandler eh) |
| 41 | { |
| 42 | if (tokenSource.startsWith("ARMOR") |
| 43 | && ((tokenSource.charAt(5) == '.') || Character.isDigit(tokenSource.charAt(5)))) |
| 44 | { |
| 45 | return getArmorToken(tokenSource, pc, eh); |
| 46 | } |
| 47 | return ""; |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * @param tokenSource |
nothing calls this directly
no test coverage detected