| Total Complexity | 2 |
| Total Lines | 9 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | /* |
||
| 45 | public static final class Parser implements SinglePacketParser<ShowCellRequest> { |
||
| 46 | @Override |
||
| 47 | public ShowCellRequest parse(String input) throws ParsePacketException { |
||
| 48 | return new ShowCellRequest(Integer.parseInt(input)); |
||
| 49 | } |
||
| 50 | |||
| 51 | @Override |
||
| 52 | public String code() { |
||
| 53 | return "Gf"; |
||
| 54 | } |
||
| 57 |