(final String line)
| 3374 | } |
| 3375 | |
| 3376 | private void parsePoolPointsLine(final String line) |
| 3377 | { |
| 3378 | try |
| 3379 | { |
| 3380 | final int poolPoints = Integer.parseInt(line.substring(IOConstants.TAG_POOLPOINTS.length() + 1)); |
| 3381 | thePC.setPoolAmount(poolPoints); |
| 3382 | thePC.setCostPool(poolPoints); |
| 3383 | } |
| 3384 | catch (NumberFormatException nfe) |
| 3385 | { |
| 3386 | final String msg = LanguageBundle.getFormattedString("Warnings.PCGenParser.InvalidPoolPoints", //$NON-NLS-1$ |
| 3387 | line); |
| 3388 | warnings.add(msg); |
| 3389 | } |
| 3390 | } |
| 3391 | |
| 3392 | private void parsePoolPointsLine2(final String line) |
| 3393 | { |
no test coverage detected