(final String line)
| 3390 | } |
| 3391 | |
| 3392 | private void parsePoolPointsLine2(final String line) |
| 3393 | { |
| 3394 | try |
| 3395 | { |
| 3396 | thePC.setPointBuyPoints(Integer.parseInt(line.substring(IOConstants.TAG_POOLPOINTSAVAIL.length() + 1))); |
| 3397 | } |
| 3398 | catch (NumberFormatException nfe) |
| 3399 | { |
| 3400 | final String msg = LanguageBundle.getFormattedString("Warnings.PCGenParser.InvalidPoolPoints", //$NON-NLS-1$ |
| 3401 | line); |
| 3402 | warnings.add(msg); |
| 3403 | } |
| 3404 | } |
| 3405 | |
| 3406 | private void parsePortraitLine(final String line) |
| 3407 | { |
no test coverage detected